react-native-xenon 1.0.2 → 2.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 (459) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +9 -9
  3. package/lib/module/assets/icons/close.png +0 -0
  4. package/lib/module/assets/icons/search.png +0 -0
  5. package/lib/module/contexts/MainContext.js +3 -7
  6. package/lib/module/contexts/MainContext.js.map +1 -1
  7. package/lib/module/contexts/index.js +1 -11
  8. package/lib/module/contexts/index.js.map +1 -1
  9. package/lib/module/core/constants.js +1 -5
  10. package/lib/module/core/constants.js.map +1 -1
  11. package/lib/module/core/refs.js +10 -12
  12. package/lib/module/core/refs.js.map +1 -1
  13. package/lib/module/core/utils.js +49 -50
  14. package/lib/module/core/utils.js.map +1 -1
  15. package/lib/module/hooks/index.js +2 -18
  16. package/lib/module/hooks/index.js.map +1 -1
  17. package/lib/module/hooks/useConsoleInterceptor.js +10 -14
  18. package/lib/module/hooks/useConsoleInterceptor.js.map +1 -1
  19. package/lib/module/hooks/useNetworkInterceptor.js +30 -29
  20. package/lib/module/hooks/useNetworkInterceptor.js.map +1 -1
  21. package/lib/module/index.js +1 -11
  22. package/lib/module/index.js.map +1 -1
  23. package/lib/module/interceptors/ConsoleInterceptor.js +7 -10
  24. package/lib/module/interceptors/ConsoleInterceptor.js.map +1 -1
  25. package/lib/module/interceptors/FetchInterceptor.js +12 -16
  26. package/lib/module/interceptors/FetchInterceptor.js.map +1 -1
  27. package/lib/module/interceptors/HttpInterceptor.js +2 -7
  28. package/lib/module/interceptors/HttpInterceptor.js.map +1 -1
  29. package/lib/module/interceptors/Interceptor.js +4 -7
  30. package/lib/module/interceptors/Interceptor.js.map +1 -1
  31. package/lib/module/interceptors/NetworkInterceptor.js +2 -8
  32. package/lib/module/interceptors/NetworkInterceptor.js.map +1 -1
  33. package/lib/module/interceptors/WebSocketInterceptor.js +20 -24
  34. package/lib/module/interceptors/WebSocketInterceptor.js.map +1 -1
  35. package/lib/module/interceptors/XHRInterceptor.js +8 -12
  36. package/lib/module/interceptors/XHRInterceptor.js.map +1 -1
  37. package/lib/module/interceptors/index.js +4 -32
  38. package/lib/module/interceptors/index.js.map +1 -1
  39. package/lib/module/theme/colors.js +1 -5
  40. package/lib/module/theme/colors.js.map +1 -1
  41. package/lib/module/theme/icons.js +4 -6
  42. package/lib/module/theme/icons.js.map +1 -1
  43. package/lib/module/types/common.js +2 -6
  44. package/lib/module/types/common.js.map +1 -1
  45. package/lib/module/types/http.js +1 -3
  46. package/lib/module/types/index.js +4 -47
  47. package/lib/module/types/index.js.map +1 -1
  48. package/lib/module/types/websocket.js +1 -3
  49. package/lib/module/ui/Xenon.js +63 -63
  50. package/lib/module/ui/Xenon.js.map +1 -1
  51. package/lib/module/ui/components/bubble/Bubble.js +30 -37
  52. package/lib/module/ui/components/bubble/Bubble.js.map +1 -1
  53. package/lib/module/ui/components/common/Divider.js +7 -12
  54. package/lib/module/ui/components/common/Divider.js.map +1 -1
  55. package/lib/module/ui/components/common/Icon.js +6 -11
  56. package/lib/module/ui/components/common/Icon.js.map +1 -1
  57. package/lib/module/ui/components/common/IndexedStack.js +8 -12
  58. package/lib/module/ui/components/common/IndexedStack.js.map +1 -1
  59. package/lib/module/ui/components/common/SafeArea.js +15 -0
  60. package/lib/module/ui/components/common/SafeArea.js.map +1 -0
  61. package/lib/module/ui/components/common/ShareableText.js +20 -0
  62. package/lib/module/ui/components/common/ShareableText.js.map +1 -0
  63. package/lib/module/ui/components/common/Touchable.js +6 -12
  64. package/lib/module/ui/components/common/Touchable.js.map +1 -1
  65. package/lib/module/ui/components/details/LogMessageDetails.js +19 -21
  66. package/lib/module/ui/components/details/LogMessageDetails.js.map +1 -1
  67. package/lib/module/ui/components/details/NetworkRequestDetails.js +71 -58
  68. package/lib/module/ui/components/details/NetworkRequestDetails.js.map +1 -1
  69. package/lib/module/ui/components/headers/ConsoleHeader.js +10 -15
  70. package/lib/module/ui/components/headers/ConsoleHeader.js.map +1 -1
  71. package/lib/module/ui/components/headers/DebuggerHeader.js +36 -36
  72. package/lib/module/ui/components/headers/DebuggerHeader.js.map +1 -1
  73. package/lib/module/ui/components/headers/Header.js +15 -22
  74. package/lib/module/ui/components/headers/Header.js.map +1 -1
  75. package/lib/module/ui/components/headers/HeaderComponents.js +32 -39
  76. package/lib/module/ui/components/headers/HeaderComponents.js.map +1 -1
  77. package/lib/module/ui/components/headers/NetworkHeader.js +32 -52
  78. package/lib/module/ui/components/headers/NetworkHeader.js.map +1 -1
  79. package/lib/module/ui/components/index.js +5 -32
  80. package/lib/module/ui/components/index.js.map +1 -1
  81. package/lib/module/ui/components/items/ConsolePanelItem.js +12 -17
  82. package/lib/module/ui/components/items/ConsolePanelItem.js.map +1 -1
  83. package/lib/module/ui/components/items/DebuggerHeaderItem.js +14 -19
  84. package/lib/module/ui/components/items/DebuggerHeaderItem.js.map +1 -1
  85. package/lib/module/ui/components/items/NetworkPanelItem.js +33 -38
  86. package/lib/module/ui/components/items/NetworkPanelItem.js.map +1 -1
  87. package/lib/module/ui/components/items/NetworkRequestDetailsItem.js +44 -23
  88. package/lib/module/ui/components/items/NetworkRequestDetailsItem.js.map +1 -1
  89. package/lib/module/ui/components/panels/ConsolePanel.js +30 -26
  90. package/lib/module/ui/components/panels/ConsolePanel.js.map +1 -1
  91. package/lib/module/ui/components/panels/NetworkPanel.js +30 -28
  92. package/lib/module/ui/components/panels/NetworkPanel.js.map +1 -1
  93. package/lib/module/ui/components/panels/Panel.js +12 -19
  94. package/lib/module/ui/components/panels/Panel.js.map +1 -1
  95. package/lib/module/ui/components/search-bar/SearchBar.js +132 -0
  96. package/lib/module/ui/components/search-bar/SearchBar.js.map +1 -0
  97. package/lib/typescript/package.json +1 -0
  98. package/lib/typescript/src/contexts/MainContext.d.ts.map +1 -0
  99. package/lib/typescript/src/contexts/index.d.ts.map +1 -0
  100. package/lib/typescript/src/core/constants.d.ts.map +1 -0
  101. package/lib/typescript/{commonjs/src → src}/core/refs.d.ts +7 -4
  102. package/lib/typescript/src/core/refs.d.ts.map +1 -0
  103. package/lib/typescript/{module/src → src}/core/utils.d.ts +5 -3
  104. package/lib/typescript/src/core/utils.d.ts.map +1 -0
  105. package/lib/typescript/src/hooks/index.d.ts.map +1 -0
  106. package/lib/typescript/src/hooks/useConsoleInterceptor.d.ts.map +1 -0
  107. package/lib/typescript/{module/src → src}/hooks/useNetworkInterceptor.d.ts +2 -1
  108. package/lib/typescript/src/hooks/useNetworkInterceptor.d.ts.map +1 -0
  109. package/lib/typescript/src/index.d.ts.map +1 -0
  110. package/lib/typescript/src/interceptors/ConsoleInterceptor.d.ts.map +1 -0
  111. package/lib/typescript/src/interceptors/FetchInterceptor.d.ts.map +1 -0
  112. package/lib/typescript/src/interceptors/HttpInterceptor.d.ts.map +1 -0
  113. package/lib/typescript/src/interceptors/Interceptor.d.ts.map +1 -0
  114. package/lib/typescript/src/interceptors/NetworkInterceptor.d.ts.map +1 -0
  115. package/lib/typescript/src/interceptors/WebSocketInterceptor.d.ts.map +1 -0
  116. package/lib/typescript/src/interceptors/XHRInterceptor.d.ts.map +1 -0
  117. package/lib/typescript/src/interceptors/index.d.ts.map +1 -0
  118. package/lib/typescript/src/theme/colors.d.ts.map +1 -0
  119. package/lib/typescript/{commonjs/src → src}/theme/icons.d.ts +2 -0
  120. package/lib/typescript/src/theme/icons.d.ts.map +1 -0
  121. package/lib/typescript/{commonjs/src → src}/types/common.d.ts +1 -0
  122. package/lib/typescript/src/types/common.d.ts.map +1 -0
  123. package/lib/typescript/src/types/console.d.ts.map +1 -0
  124. package/lib/typescript/src/types/http.d.ts.map +1 -0
  125. package/lib/typescript/src/types/index.d.ts.map +1 -0
  126. package/lib/typescript/src/types/websocket.d.ts.map +1 -0
  127. package/lib/typescript/src/ui/Xenon.d.ts +61 -0
  128. package/lib/typescript/src/ui/Xenon.d.ts.map +1 -0
  129. package/lib/typescript/src/ui/components/bubble/Bubble.d.ts.map +1 -0
  130. package/lib/typescript/src/ui/components/common/Divider.d.ts.map +1 -0
  131. package/lib/typescript/src/ui/components/common/Icon.d.ts.map +1 -0
  132. package/lib/typescript/src/ui/components/common/IndexedStack.d.ts.map +1 -0
  133. package/lib/typescript/src/ui/components/common/SafeArea.d.ts +5 -0
  134. package/lib/typescript/src/ui/components/common/SafeArea.d.ts.map +1 -0
  135. package/lib/typescript/src/ui/components/common/ShareableText.d.ts +7 -0
  136. package/lib/typescript/src/ui/components/common/ShareableText.d.ts.map +1 -0
  137. package/lib/typescript/src/ui/components/common/Touchable.d.ts +6 -0
  138. package/lib/typescript/src/ui/components/common/Touchable.d.ts.map +1 -0
  139. package/lib/typescript/src/ui/components/details/LogMessageDetails.d.ts.map +1 -0
  140. package/lib/typescript/src/ui/components/details/NetworkRequestDetails.d.ts +6 -0
  141. package/lib/typescript/src/ui/components/details/NetworkRequestDetails.d.ts.map +1 -0
  142. package/lib/typescript/src/ui/components/headers/ConsoleHeader.d.ts.map +1 -0
  143. package/lib/typescript/src/ui/components/headers/DebuggerHeader.d.ts.map +1 -0
  144. package/lib/typescript/src/ui/components/headers/Header.d.ts.map +1 -0
  145. package/lib/typescript/{commonjs/src → src}/ui/components/headers/HeaderComponents.d.ts +1 -1
  146. package/lib/typescript/src/ui/components/headers/HeaderComponents.d.ts.map +1 -0
  147. package/lib/typescript/src/ui/components/headers/NetworkHeader.d.ts.map +1 -0
  148. package/lib/typescript/src/ui/components/index.d.ts +6 -0
  149. package/lib/typescript/src/ui/components/index.d.ts.map +1 -0
  150. package/lib/typescript/src/ui/components/items/ConsolePanelItem.d.ts.map +1 -0
  151. package/lib/typescript/src/ui/components/items/DebuggerHeaderItem.d.ts.map +1 -0
  152. package/lib/typescript/src/ui/components/items/NetworkPanelItem.d.ts.map +1 -0
  153. package/lib/typescript/src/ui/components/items/NetworkRequestDetailsItem.d.ts.map +1 -0
  154. package/lib/typescript/src/ui/components/panels/ConsolePanel.d.ts.map +1 -0
  155. package/lib/typescript/src/ui/components/panels/NetworkPanel.d.ts.map +1 -0
  156. package/lib/typescript/src/ui/components/panels/Panel.d.ts.map +1 -0
  157. package/lib/typescript/src/ui/components/search-bar/SearchBar.d.ts +6 -0
  158. package/lib/typescript/src/ui/components/search-bar/SearchBar.d.ts.map +1 -0
  159. package/package.json +42 -86
  160. package/src/assets/icons/close.png +0 -0
  161. package/src/assets/icons/search.png +0 -0
  162. package/src/core/refs.ts +3 -0
  163. package/src/core/utils.ts +32 -8
  164. package/src/hooks/useNetworkInterceptor.ts +13 -2
  165. package/src/interceptors/FetchInterceptor.ts +1 -1
  166. package/src/theme/icons.ts +2 -0
  167. package/src/types/common.ts +1 -0
  168. package/src/ui/Xenon.tsx +62 -16
  169. package/src/ui/components/bubble/Bubble.tsx +2 -2
  170. package/src/ui/components/common/SafeArea.tsx +10 -0
  171. package/src/ui/components/common/ShareableText.tsx +21 -0
  172. package/src/ui/components/common/Touchable.tsx +4 -14
  173. package/src/ui/components/details/LogMessageDetails.tsx +3 -0
  174. package/src/ui/components/details/NetworkRequestDetails.tsx +42 -34
  175. package/src/ui/components/headers/ConsoleHeader.tsx +1 -1
  176. package/src/ui/components/headers/DebuggerHeader.tsx +8 -1
  177. package/src/ui/components/headers/HeaderComponents.tsx +2 -2
  178. package/src/ui/components/headers/NetworkHeader.tsx +14 -26
  179. package/src/ui/components/index.ts +4 -3
  180. package/src/ui/components/items/NetworkRequestDetailsItem.tsx +45 -18
  181. package/src/ui/components/panels/ConsolePanel.tsx +18 -2
  182. package/src/ui/components/panels/NetworkPanel.tsx +15 -1
  183. package/src/ui/components/search-bar/SearchBar.tsx +129 -0
  184. package/lib/commonjs/assets/icons/arrow-left.png +0 -0
  185. package/lib/commonjs/assets/icons/beautify.png +0 -0
  186. package/lib/commonjs/assets/icons/bug.png +0 -0
  187. package/lib/commonjs/assets/icons/delete.png +0 -0
  188. package/lib/commonjs/assets/icons/hide.png +0 -0
  189. package/lib/commonjs/assets/icons/move.png +0 -0
  190. package/lib/commonjs/assets/icons/record.png +0 -0
  191. package/lib/commonjs/assets/icons/share.png +0 -0
  192. package/lib/commonjs/contexts/MainContext.js +0 -10
  193. package/lib/commonjs/contexts/MainContext.js.map +0 -1
  194. package/lib/commonjs/contexts/index.js +0 -14
  195. package/lib/commonjs/contexts/index.js.map +0 -1
  196. package/lib/commonjs/core/constants.js +0 -8
  197. package/lib/commonjs/core/constants.js.map +0 -1
  198. package/lib/commonjs/core/global.d.js +0 -2
  199. package/lib/commonjs/core/global.d.js.map +0 -1
  200. package/lib/commonjs/core/refs.js +0 -33
  201. package/lib/commonjs/core/refs.js.map +0 -1
  202. package/lib/commonjs/core/utils.js +0 -138
  203. package/lib/commonjs/core/utils.js.map +0 -1
  204. package/lib/commonjs/hooks/index.js +0 -21
  205. package/lib/commonjs/hooks/index.js.map +0 -1
  206. package/lib/commonjs/hooks/useConsoleInterceptor.js +0 -51
  207. package/lib/commonjs/hooks/useConsoleInterceptor.js.map +0 -1
  208. package/lib/commonjs/hooks/useNetworkInterceptor.js +0 -171
  209. package/lib/commonjs/hooks/useNetworkInterceptor.js.map +0 -1
  210. package/lib/commonjs/index.js +0 -14
  211. package/lib/commonjs/index.js.map +0 -1
  212. package/lib/commonjs/interceptors/ConsoleInterceptor.js +0 -88
  213. package/lib/commonjs/interceptors/ConsoleInterceptor.js.map +0 -1
  214. package/lib/commonjs/interceptors/FetchInterceptor.js +0 -109
  215. package/lib/commonjs/interceptors/FetchInterceptor.js.map +0 -1
  216. package/lib/commonjs/interceptors/HttpInterceptor.js +0 -18
  217. package/lib/commonjs/interceptors/HttpInterceptor.js.map +0 -1
  218. package/lib/commonjs/interceptors/Interceptor.js +0 -23
  219. package/lib/commonjs/interceptors/Interceptor.js.map +0 -1
  220. package/lib/commonjs/interceptors/NetworkInterceptor.js +0 -24
  221. package/lib/commonjs/interceptors/NetworkInterceptor.js.map +0 -1
  222. package/lib/commonjs/interceptors/WebSocketInterceptor.js +0 -101
  223. package/lib/commonjs/interceptors/WebSocketInterceptor.js.map +0 -1
  224. package/lib/commonjs/interceptors/XHRInterceptor.js +0 -70
  225. package/lib/commonjs/interceptors/XHRInterceptor.js.map +0 -1
  226. package/lib/commonjs/interceptors/index.js +0 -35
  227. package/lib/commonjs/interceptors/index.js.map +0 -1
  228. package/lib/commonjs/theme/colors.js +0 -20
  229. package/lib/commonjs/theme/colors.js.map +0 -1
  230. package/lib/commonjs/theme/icons.js +0 -18
  231. package/lib/commonjs/theme/icons.js.map +0 -1
  232. package/lib/commonjs/types/common.js +0 -18
  233. package/lib/commonjs/types/common.js.map +0 -1
  234. package/lib/commonjs/types/console.js +0 -2
  235. package/lib/commonjs/types/console.js.map +0 -1
  236. package/lib/commonjs/types/http.js +0 -6
  237. package/lib/commonjs/types/http.js.map +0 -1
  238. package/lib/commonjs/types/index.js +0 -50
  239. package/lib/commonjs/types/index.js.map +0 -1
  240. package/lib/commonjs/types/websocket.js +0 -6
  241. package/lib/commonjs/types/websocket.js.map +0 -1
  242. package/lib/commonjs/ui/Xenon.js +0 -141
  243. package/lib/commonjs/ui/Xenon.js.map +0 -1
  244. package/lib/commonjs/ui/components/bubble/Bubble.js +0 -126
  245. package/lib/commonjs/ui/components/bubble/Bubble.js.map +0 -1
  246. package/lib/commonjs/ui/components/common/Divider.js +0 -21
  247. package/lib/commonjs/ui/components/common/Divider.js.map +0 -1
  248. package/lib/commonjs/ui/components/common/Icon.js +0 -25
  249. package/lib/commonjs/ui/components/common/Icon.js.map +0 -1
  250. package/lib/commonjs/ui/components/common/IndexedStack.js +0 -46
  251. package/lib/commonjs/ui/components/common/IndexedStack.js.map +0 -1
  252. package/lib/commonjs/ui/components/common/Touchable.js +0 -22
  253. package/lib/commonjs/ui/components/common/Touchable.js.map +0 -1
  254. package/lib/commonjs/ui/components/details/LogMessageDetails.js +0 -45
  255. package/lib/commonjs/ui/components/details/LogMessageDetails.js.map +0 -1
  256. package/lib/commonjs/ui/components/details/NetworkRequestDetails.js +0 -163
  257. package/lib/commonjs/ui/components/details/NetworkRequestDetails.js.map +0 -1
  258. package/lib/commonjs/ui/components/headers/ConsoleHeader.js +0 -30
  259. package/lib/commonjs/ui/components/headers/ConsoleHeader.js.map +0 -1
  260. package/lib/commonjs/ui/components/headers/DebuggerHeader.js +0 -76
  261. package/lib/commonjs/ui/components/headers/DebuggerHeader.js.map +0 -1
  262. package/lib/commonjs/ui/components/headers/Header.js +0 -34
  263. package/lib/commonjs/ui/components/headers/Header.js.map +0 -1
  264. package/lib/commonjs/ui/components/headers/HeaderComponents.js +0 -111
  265. package/lib/commonjs/ui/components/headers/HeaderComponents.js.map +0 -1
  266. package/lib/commonjs/ui/components/headers/NetworkHeader.js +0 -97
  267. package/lib/commonjs/ui/components/headers/NetworkHeader.js.map +0 -1
  268. package/lib/commonjs/ui/components/index.js +0 -35
  269. package/lib/commonjs/ui/components/index.js.map +0 -1
  270. package/lib/commonjs/ui/components/items/ConsolePanelItem.js +0 -41
  271. package/lib/commonjs/ui/components/items/ConsolePanelItem.js.map +0 -1
  272. package/lib/commonjs/ui/components/items/DebuggerHeaderItem.js +0 -60
  273. package/lib/commonjs/ui/components/items/DebuggerHeaderItem.js.map +0 -1
  274. package/lib/commonjs/ui/components/items/NetworkPanelItem.js +0 -129
  275. package/lib/commonjs/ui/components/items/NetworkPanelItem.js.map +0 -1
  276. package/lib/commonjs/ui/components/items/NetworkRequestDetailsItem.js +0 -45
  277. package/lib/commonjs/ui/components/items/NetworkRequestDetailsItem.js.map +0 -1
  278. package/lib/commonjs/ui/components/panels/ConsolePanel.js +0 -69
  279. package/lib/commonjs/ui/components/panels/ConsolePanel.js.map +0 -1
  280. package/lib/commonjs/ui/components/panels/NetworkPanel.js +0 -69
  281. package/lib/commonjs/ui/components/panels/NetworkPanel.js.map +0 -1
  282. package/lib/commonjs/ui/components/panels/Panel.js +0 -25
  283. package/lib/commonjs/ui/components/panels/Panel.js.map +0 -1
  284. package/lib/typescript/commonjs/package.json +0 -1
  285. package/lib/typescript/commonjs/src/contexts/MainContext.d.ts.map +0 -1
  286. package/lib/typescript/commonjs/src/contexts/index.d.ts.map +0 -1
  287. package/lib/typescript/commonjs/src/core/constants.d.ts.map +0 -1
  288. package/lib/typescript/commonjs/src/core/refs.d.ts.map +0 -1
  289. package/lib/typescript/commonjs/src/core/utils.d.ts +0 -38
  290. package/lib/typescript/commonjs/src/core/utils.d.ts.map +0 -1
  291. package/lib/typescript/commonjs/src/hooks/index.d.ts.map +0 -1
  292. package/lib/typescript/commonjs/src/hooks/useConsoleInterceptor.d.ts.map +0 -1
  293. package/lib/typescript/commonjs/src/hooks/useNetworkInterceptor.d.ts +0 -12
  294. package/lib/typescript/commonjs/src/hooks/useNetworkInterceptor.d.ts.map +0 -1
  295. package/lib/typescript/commonjs/src/index.d.ts.map +0 -1
  296. package/lib/typescript/commonjs/src/interceptors/ConsoleInterceptor.d.ts.map +0 -1
  297. package/lib/typescript/commonjs/src/interceptors/FetchInterceptor.d.ts.map +0 -1
  298. package/lib/typescript/commonjs/src/interceptors/HttpInterceptor.d.ts.map +0 -1
  299. package/lib/typescript/commonjs/src/interceptors/Interceptor.d.ts.map +0 -1
  300. package/lib/typescript/commonjs/src/interceptors/NetworkInterceptor.d.ts.map +0 -1
  301. package/lib/typescript/commonjs/src/interceptors/WebSocketInterceptor.d.ts.map +0 -1
  302. package/lib/typescript/commonjs/src/interceptors/XHRInterceptor.d.ts.map +0 -1
  303. package/lib/typescript/commonjs/src/interceptors/index.d.ts.map +0 -1
  304. package/lib/typescript/commonjs/src/theme/colors.d.ts.map +0 -1
  305. package/lib/typescript/commonjs/src/theme/icons.d.ts.map +0 -1
  306. package/lib/typescript/commonjs/src/types/common.d.ts.map +0 -1
  307. package/lib/typescript/commonjs/src/types/console.d.ts.map +0 -1
  308. package/lib/typescript/commonjs/src/types/http.d.ts.map +0 -1
  309. package/lib/typescript/commonjs/src/types/index.d.ts.map +0 -1
  310. package/lib/typescript/commonjs/src/types/websocket.d.ts.map +0 -1
  311. package/lib/typescript/commonjs/src/ui/Xenon.d.ts +0 -21
  312. package/lib/typescript/commonjs/src/ui/Xenon.d.ts.map +0 -1
  313. package/lib/typescript/commonjs/src/ui/components/bubble/Bubble.d.ts.map +0 -1
  314. package/lib/typescript/commonjs/src/ui/components/common/Divider.d.ts.map +0 -1
  315. package/lib/typescript/commonjs/src/ui/components/common/Icon.d.ts.map +0 -1
  316. package/lib/typescript/commonjs/src/ui/components/common/IndexedStack.d.ts.map +0 -1
  317. package/lib/typescript/commonjs/src/ui/components/common/Touchable.d.ts +0 -10
  318. package/lib/typescript/commonjs/src/ui/components/common/Touchable.d.ts.map +0 -1
  319. package/lib/typescript/commonjs/src/ui/components/details/LogMessageDetails.d.ts.map +0 -1
  320. package/lib/typescript/commonjs/src/ui/components/details/NetworkRequestDetails.d.ts +0 -6
  321. package/lib/typescript/commonjs/src/ui/components/details/NetworkRequestDetails.d.ts.map +0 -1
  322. package/lib/typescript/commonjs/src/ui/components/headers/ConsoleHeader.d.ts.map +0 -1
  323. package/lib/typescript/commonjs/src/ui/components/headers/DebuggerHeader.d.ts.map +0 -1
  324. package/lib/typescript/commonjs/src/ui/components/headers/Header.d.ts.map +0 -1
  325. package/lib/typescript/commonjs/src/ui/components/headers/HeaderComponents.d.ts.map +0 -1
  326. package/lib/typescript/commonjs/src/ui/components/headers/NetworkHeader.d.ts.map +0 -1
  327. package/lib/typescript/commonjs/src/ui/components/index.d.ts +0 -5
  328. package/lib/typescript/commonjs/src/ui/components/index.d.ts.map +0 -1
  329. package/lib/typescript/commonjs/src/ui/components/items/ConsolePanelItem.d.ts.map +0 -1
  330. package/lib/typescript/commonjs/src/ui/components/items/DebuggerHeaderItem.d.ts.map +0 -1
  331. package/lib/typescript/commonjs/src/ui/components/items/NetworkPanelItem.d.ts.map +0 -1
  332. package/lib/typescript/commonjs/src/ui/components/items/NetworkRequestDetailsItem.d.ts.map +0 -1
  333. package/lib/typescript/commonjs/src/ui/components/panels/ConsolePanel.d.ts.map +0 -1
  334. package/lib/typescript/commonjs/src/ui/components/panels/NetworkPanel.d.ts.map +0 -1
  335. package/lib/typescript/commonjs/src/ui/components/panels/Panel.d.ts.map +0 -1
  336. package/lib/typescript/module/src/contexts/MainContext.d.ts +0 -12
  337. package/lib/typescript/module/src/contexts/MainContext.d.ts.map +0 -1
  338. package/lib/typescript/module/src/contexts/index.d.ts +0 -2
  339. package/lib/typescript/module/src/contexts/index.d.ts.map +0 -1
  340. package/lib/typescript/module/src/core/constants.d.ts +0 -2
  341. package/lib/typescript/module/src/core/constants.d.ts.map +0 -1
  342. package/lib/typescript/module/src/core/refs.d.ts +0 -24
  343. package/lib/typescript/module/src/core/refs.d.ts.map +0 -1
  344. package/lib/typescript/module/src/core/utils.d.ts.map +0 -1
  345. package/lib/typescript/module/src/hooks/index.d.ts +0 -3
  346. package/lib/typescript/module/src/hooks/index.d.ts.map +0 -1
  347. package/lib/typescript/module/src/hooks/useConsoleInterceptor.d.ts +0 -13
  348. package/lib/typescript/module/src/hooks/useConsoleInterceptor.d.ts.map +0 -1
  349. package/lib/typescript/module/src/hooks/useNetworkInterceptor.d.ts.map +0 -1
  350. package/lib/typescript/module/src/index.d.ts +0 -2
  351. package/lib/typescript/module/src/index.d.ts.map +0 -1
  352. package/lib/typescript/module/src/interceptors/ConsoleInterceptor.d.ts +0 -8
  353. package/lib/typescript/module/src/interceptors/ConsoleInterceptor.d.ts.map +0 -1
  354. package/lib/typescript/module/src/interceptors/FetchInterceptor.d.ts +0 -6
  355. package/lib/typescript/module/src/interceptors/FetchInterceptor.d.ts.map +0 -1
  356. package/lib/typescript/module/src/interceptors/HttpInterceptor.d.ts +0 -6
  357. package/lib/typescript/module/src/interceptors/HttpInterceptor.d.ts.map +0 -1
  358. package/lib/typescript/module/src/interceptors/Interceptor.d.ts +0 -10
  359. package/lib/typescript/module/src/interceptors/Interceptor.d.ts.map +0 -1
  360. package/lib/typescript/module/src/interceptors/NetworkInterceptor.d.ts +0 -10
  361. package/lib/typescript/module/src/interceptors/NetworkInterceptor.d.ts.map +0 -1
  362. package/lib/typescript/module/src/interceptors/WebSocketInterceptor.d.ts +0 -13
  363. package/lib/typescript/module/src/interceptors/WebSocketInterceptor.d.ts.map +0 -1
  364. package/lib/typescript/module/src/interceptors/XHRInterceptor.d.ts +0 -6
  365. package/lib/typescript/module/src/interceptors/XHRInterceptor.d.ts.map +0 -1
  366. package/lib/typescript/module/src/interceptors/index.d.ts +0 -5
  367. package/lib/typescript/module/src/interceptors/index.d.ts.map +0 -1
  368. package/lib/typescript/module/src/theme/colors.d.ts +0 -14
  369. package/lib/typescript/module/src/theme/colors.d.ts.map +0 -1
  370. package/lib/typescript/module/src/theme/icons.d.ts +0 -12
  371. package/lib/typescript/module/src/theme/icons.d.ts.map +0 -1
  372. package/lib/typescript/module/src/types/common.d.ts +0 -33
  373. package/lib/typescript/module/src/types/common.d.ts.map +0 -1
  374. package/lib/typescript/module/src/types/console.d.ts +0 -8
  375. package/lib/typescript/module/src/types/console.d.ts.map +0 -1
  376. package/lib/typescript/module/src/types/http.d.ts +0 -21
  377. package/lib/typescript/module/src/types/http.d.ts.map +0 -1
  378. package/lib/typescript/module/src/types/index.d.ts +0 -5
  379. package/lib/typescript/module/src/types/index.d.ts.map +0 -1
  380. package/lib/typescript/module/src/types/websocket.d.ts +0 -30
  381. package/lib/typescript/module/src/types/websocket.d.ts.map +0 -1
  382. package/lib/typescript/module/src/ui/Xenon.d.ts +0 -21
  383. package/lib/typescript/module/src/ui/Xenon.d.ts.map +0 -1
  384. package/lib/typescript/module/src/ui/components/bubble/Bubble.d.ts +0 -11
  385. package/lib/typescript/module/src/ui/components/bubble/Bubble.d.ts.map +0 -1
  386. package/lib/typescript/module/src/ui/components/common/Divider.d.ts +0 -4
  387. package/lib/typescript/module/src/ui/components/common/Divider.d.ts.map +0 -1
  388. package/lib/typescript/module/src/ui/components/common/Icon.d.ts +0 -8
  389. package/lib/typescript/module/src/ui/components/common/Icon.d.ts.map +0 -1
  390. package/lib/typescript/module/src/ui/components/common/IndexedStack.d.ts +0 -13
  391. package/lib/typescript/module/src/ui/components/common/IndexedStack.d.ts.map +0 -1
  392. package/lib/typescript/module/src/ui/components/common/Touchable.d.ts +0 -10
  393. package/lib/typescript/module/src/ui/components/common/Touchable.d.ts.map +0 -1
  394. package/lib/typescript/module/src/ui/components/details/LogMessageDetails.d.ts +0 -6
  395. package/lib/typescript/module/src/ui/components/details/LogMessageDetails.d.ts.map +0 -1
  396. package/lib/typescript/module/src/ui/components/details/NetworkRequestDetails.d.ts +0 -6
  397. package/lib/typescript/module/src/ui/components/details/NetworkRequestDetails.d.ts.map +0 -1
  398. package/lib/typescript/module/src/ui/components/headers/ConsoleHeader.d.ts +0 -9
  399. package/lib/typescript/module/src/ui/components/headers/ConsoleHeader.d.ts.map +0 -1
  400. package/lib/typescript/module/src/ui/components/headers/DebuggerHeader.d.ts +0 -10
  401. package/lib/typescript/module/src/ui/components/headers/DebuggerHeader.d.ts.map +0 -1
  402. package/lib/typescript/module/src/ui/components/headers/Header.d.ts +0 -3
  403. package/lib/typescript/module/src/ui/components/headers/Header.d.ts.map +0 -1
  404. package/lib/typescript/module/src/ui/components/headers/HeaderComponents.d.ts +0 -20
  405. package/lib/typescript/module/src/ui/components/headers/HeaderComponents.d.ts.map +0 -1
  406. package/lib/typescript/module/src/ui/components/headers/NetworkHeader.d.ts +0 -9
  407. package/lib/typescript/module/src/ui/components/headers/NetworkHeader.d.ts.map +0 -1
  408. package/lib/typescript/module/src/ui/components/index.d.ts +0 -5
  409. package/lib/typescript/module/src/ui/components/index.d.ts.map +0 -1
  410. package/lib/typescript/module/src/ui/components/items/ConsolePanelItem.d.ts +0 -7
  411. package/lib/typescript/module/src/ui/components/items/ConsolePanelItem.d.ts.map +0 -1
  412. package/lib/typescript/module/src/ui/components/items/DebuggerHeaderItem.d.ts +0 -11
  413. package/lib/typescript/module/src/ui/components/items/DebuggerHeaderItem.d.ts.map +0 -1
  414. package/lib/typescript/module/src/ui/components/items/NetworkPanelItem.d.ts +0 -12
  415. package/lib/typescript/module/src/ui/components/items/NetworkPanelItem.d.ts.map +0 -1
  416. package/lib/typescript/module/src/ui/components/items/NetworkRequestDetailsItem.d.ts +0 -7
  417. package/lib/typescript/module/src/ui/components/items/NetworkRequestDetailsItem.d.ts.map +0 -1
  418. package/lib/typescript/module/src/ui/components/panels/ConsolePanel.d.ts +0 -6
  419. package/lib/typescript/module/src/ui/components/panels/ConsolePanel.d.ts.map +0 -1
  420. package/lib/typescript/module/src/ui/components/panels/NetworkPanel.d.ts +0 -6
  421. package/lib/typescript/module/src/ui/components/panels/NetworkPanel.d.ts.map +0 -1
  422. package/lib/typescript/module/src/ui/components/panels/Panel.d.ts +0 -2
  423. package/lib/typescript/module/src/ui/components/panels/Panel.d.ts.map +0 -1
  424. /package/lib/{typescript/module → module}/package.json +0 -0
  425. /package/lib/typescript/{commonjs/src → src}/contexts/MainContext.d.ts +0 -0
  426. /package/lib/typescript/{commonjs/src → src}/contexts/index.d.ts +0 -0
  427. /package/lib/typescript/{commonjs/src → src}/core/constants.d.ts +0 -0
  428. /package/lib/typescript/{commonjs/src → src}/hooks/index.d.ts +0 -0
  429. /package/lib/typescript/{commonjs/src → src}/hooks/useConsoleInterceptor.d.ts +0 -0
  430. /package/lib/typescript/{commonjs/src → src}/index.d.ts +0 -0
  431. /package/lib/typescript/{commonjs/src → src}/interceptors/ConsoleInterceptor.d.ts +0 -0
  432. /package/lib/typescript/{commonjs/src → src}/interceptors/FetchInterceptor.d.ts +0 -0
  433. /package/lib/typescript/{commonjs/src → src}/interceptors/HttpInterceptor.d.ts +0 -0
  434. /package/lib/typescript/{commonjs/src → src}/interceptors/Interceptor.d.ts +0 -0
  435. /package/lib/typescript/{commonjs/src → src}/interceptors/NetworkInterceptor.d.ts +0 -0
  436. /package/lib/typescript/{commonjs/src → src}/interceptors/WebSocketInterceptor.d.ts +0 -0
  437. /package/lib/typescript/{commonjs/src → src}/interceptors/XHRInterceptor.d.ts +0 -0
  438. /package/lib/typescript/{commonjs/src → src}/interceptors/index.d.ts +0 -0
  439. /package/lib/typescript/{commonjs/src → src}/theme/colors.d.ts +0 -0
  440. /package/lib/typescript/{commonjs/src → src}/types/console.d.ts +0 -0
  441. /package/lib/typescript/{commonjs/src → src}/types/http.d.ts +0 -0
  442. /package/lib/typescript/{commonjs/src → src}/types/index.d.ts +0 -0
  443. /package/lib/typescript/{commonjs/src → src}/types/websocket.d.ts +0 -0
  444. /package/lib/typescript/{commonjs/src → src}/ui/components/bubble/Bubble.d.ts +0 -0
  445. /package/lib/typescript/{commonjs/src → src}/ui/components/common/Divider.d.ts +0 -0
  446. /package/lib/typescript/{commonjs/src → src}/ui/components/common/Icon.d.ts +0 -0
  447. /package/lib/typescript/{commonjs/src → src}/ui/components/common/IndexedStack.d.ts +0 -0
  448. /package/lib/typescript/{commonjs/src → src}/ui/components/details/LogMessageDetails.d.ts +0 -0
  449. /package/lib/typescript/{commonjs/src → src}/ui/components/headers/ConsoleHeader.d.ts +0 -0
  450. /package/lib/typescript/{commonjs/src → src}/ui/components/headers/DebuggerHeader.d.ts +0 -0
  451. /package/lib/typescript/{commonjs/src → src}/ui/components/headers/Header.d.ts +0 -0
  452. /package/lib/typescript/{commonjs/src → src}/ui/components/headers/NetworkHeader.d.ts +0 -0
  453. /package/lib/typescript/{commonjs/src → src}/ui/components/items/ConsolePanelItem.d.ts +0 -0
  454. /package/lib/typescript/{commonjs/src → src}/ui/components/items/DebuggerHeaderItem.d.ts +0 -0
  455. /package/lib/typescript/{commonjs/src → src}/ui/components/items/NetworkPanelItem.d.ts +0 -0
  456. /package/lib/typescript/{commonjs/src → src}/ui/components/items/NetworkRequestDetailsItem.d.ts +0 -0
  457. /package/lib/typescript/{commonjs/src → src}/ui/components/panels/ConsolePanel.d.ts +0 -0
  458. /package/lib/typescript/{commonjs/src → src}/ui/components/panels/NetworkPanel.d.ts +0 -0
  459. /package/lib/typescript/{commonjs/src → src}/ui/components/panels/Panel.d.ts +0 -0
@@ -1,25 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = Panel;
7
- var _refs = _interopRequireWildcard(require("../../../core/refs"));
8
- var _IndexedStack = _interopRequireDefault(require("../common/IndexedStack"));
9
- var _LogMessageDetails = _interopRequireDefault(require("../details/LogMessageDetails"));
10
- var _NetworkRequestDetails = _interopRequireDefault(require("../details/NetworkRequestDetails"));
11
- var _ConsolePanel = _interopRequireDefault(require("./ConsolePanel"));
12
- var _NetworkPanel = _interopRequireDefault(require("./NetworkPanel"));
13
- var _jsxRuntime = require("react/jsx-runtime");
14
- function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
- function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
16
- function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
17
- function Panel() {
18
- return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_IndexedStack.default, {
19
- defaultIndex: _refs.PanelState.Network,
20
- id: "debugger-panel",
21
- ref: _refs.default.panel,
22
- children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_NetworkPanel.default, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_ConsolePanel.default, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_NetworkRequestDetails.default, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_LogMessageDetails.default, {})]
23
- });
24
- }
25
- //# sourceMappingURL=Panel.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_refs","_interopRequireWildcard","require","_IndexedStack","_interopRequireDefault","_LogMessageDetails","_NetworkRequestDetails","_ConsolePanel","_NetworkPanel","_jsxRuntime","e","__esModule","default","_getRequireWildcardCache","WeakMap","r","t","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","Panel","jsxs","defaultIndex","PanelState","Network","id","ref","refs","panel","children","jsx"],"sourceRoot":"../../../../../src","sources":["ui/components/panels/Panel.tsx"],"mappings":";;;;;;AAAA,IAAAA,KAAA,GAAAC,uBAAA,CAAAC,OAAA;AACA,IAAAC,aAAA,GAAAC,sBAAA,CAAAF,OAAA;AACA,IAAAG,kBAAA,GAAAD,sBAAA,CAAAF,OAAA;AACA,IAAAI,sBAAA,GAAAF,sBAAA,CAAAF,OAAA;AACA,IAAAK,aAAA,GAAAH,sBAAA,CAAAF,OAAA;AACA,IAAAM,aAAA,GAAAJ,sBAAA,CAAAF,OAAA;AAA0C,IAAAO,WAAA,GAAAP,OAAA;AAAA,SAAAE,uBAAAM,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAAA,SAAAG,yBAAAH,CAAA,6BAAAI,OAAA,mBAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAD,wBAAA,YAAAA,CAAAH,CAAA,WAAAA,CAAA,GAAAM,CAAA,GAAAD,CAAA,KAAAL,CAAA;AAAA,SAAAT,wBAAAS,CAAA,EAAAK,CAAA,SAAAA,CAAA,IAAAL,CAAA,IAAAA,CAAA,CAAAC,UAAA,SAAAD,CAAA,eAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,WAAAE,OAAA,EAAAF,CAAA,QAAAM,CAAA,GAAAH,wBAAA,CAAAE,CAAA,OAAAC,CAAA,IAAAA,CAAA,CAAAC,GAAA,CAAAP,CAAA,UAAAM,CAAA,CAAAE,GAAA,CAAAR,CAAA,OAAAS,CAAA,KAAAC,SAAA,UAAAC,CAAA,GAAAC,MAAA,CAAAC,cAAA,IAAAD,MAAA,CAAAE,wBAAA,WAAAC,CAAA,IAAAf,CAAA,oBAAAe,CAAA,OAAAC,cAAA,CAAAC,IAAA,CAAAjB,CAAA,EAAAe,CAAA,SAAAG,CAAA,GAAAP,CAAA,GAAAC,MAAA,CAAAE,wBAAA,CAAAd,CAAA,EAAAe,CAAA,UAAAG,CAAA,KAAAA,CAAA,CAAAV,GAAA,IAAAU,CAAA,CAAAC,GAAA,IAAAP,MAAA,CAAAC,cAAA,CAAAJ,CAAA,EAAAM,CAAA,EAAAG,CAAA,IAAAT,CAAA,CAAAM,CAAA,IAAAf,CAAA,CAAAe,CAAA,YAAAN,CAAA,CAAAP,OAAA,GAAAF,CAAA,EAAAM,CAAA,IAAAA,CAAA,CAAAa,GAAA,CAAAnB,CAAA,EAAAS,CAAA,GAAAA,CAAA;AAE3B,SAASW,KAAKA,CAAA,EAAG;EAC9B,oBACE,IAAArB,WAAA,CAAAsB,IAAA,EAAC5B,aAAA,CAAAS,OAAY;IAACoB,YAAY,EAAEC,gBAAU,CAACC,OAAQ;IAACC,EAAE,EAAC,gBAAgB;IAACC,GAAG,EAAEC,aAAI,CAACC,KAAM;IAAAC,QAAA,gBAClF,IAAA9B,WAAA,CAAA+B,GAAA,EAAChC,aAAA,CAAAI,OAAY,IAAE,CAAC,eAChB,IAAAH,WAAA,CAAA+B,GAAA,EAACjC,aAAA,CAAAK,OAAY,IAAE,CAAC,eAChB,IAAAH,WAAA,CAAA+B,GAAA,EAAClC,sBAAA,CAAAM,OAAqB,IAAE,CAAC,eACzB,IAAAH,WAAA,CAAA+B,GAAA,EAACnC,kBAAA,CAAAO,OAAiB,IAAE,CAAC;EAAA,CACT,CAAC;AAEnB","ignoreList":[]}
@@ -1 +0,0 @@
1
- {"type":"commonjs"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"MainContext.d.ts","sourceRoot":"","sources":["../../../../../src/contexts/MainContext.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,KAAK,EAAE,qBAAqB,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAC7E,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAE9C,UAAU,gBAAgB;IACxB,aAAa,EAAE,aAAa,CAAC;IAC7B,gBAAgB,EAAE,OAAO,CAAC,aAAa,CAAC,CAAC;IACzC,kBAAkB,EAAE,UAAU,CAAC,OAAO,qBAAqB,CAAC,CAAC;IAC7D,kBAAkB,EAAE,UAAU,CAAC,OAAO,qBAAqB,CAAC,CAAC;CAC9D;AAED,QAAA,MAAM,WAAW,kDAA+C,CAAC;AAEjE,eAAe,WAAW,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/contexts/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../../src/core/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,sBAAsB,yBAAyB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"refs.d.ts","sourceRoot":"","sources":["../../../../../src/core/refs.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,sCAAsC,CAAC;AAEhF,oBAAY,kBAAkB;IAC5B,MAAM,KAAK;IACX,MAAM,IAAI;IACV,KAAK,IAAI;CACV;AAED,oBAAY,UAAU;IACpB,OAAO,IAAI;IACX,OAAO,IAAI;IACX,aAAa,IAAI;IACjB,aAAa,IAAI;CAClB;AAED,oBAAY,WAAW;IACrB,QAAQ,IAAI;IACZ,OAAO,IAAI;IACX,OAAO,IAAI;CACZ;AAED,QAAA,MAAM,IAAI;;;;CAIT,CAAC;AAEF,eAAe,IAAI,CAAC"}
@@ -1,38 +0,0 @@
1
- import { URL } from 'react-native-url-polyfill';
2
- import { type HttpRequest, type LogMessage, type WebSocketRequest } from '../types';
3
- export declare const getNetworkUtils: (data?: HttpRequest | WebSocketRequest) => {
4
- isHttp?: undefined;
5
- requestUrl?: undefined;
6
- overviewShown?: undefined;
7
- headersShown?: undefined;
8
- requestShown?: undefined;
9
- responseShown?: undefined;
10
- messagesShown?: undefined;
11
- } | {
12
- isHttp: boolean;
13
- requestUrl: URL;
14
- overviewShown: boolean;
15
- headersShown: boolean;
16
- requestShown: boolean;
17
- responseShown: boolean;
18
- messagesShown: boolean;
19
- };
20
- export declare const getConsoleTypeColor: (type: LogMessage["type"]) => string;
21
- export declare const getVerticalSafeMargin: (screenHeight: number) => number;
22
- export declare const clamp: (value: number, min: number, max: number) => number;
23
- export declare const getHttpInterceptorId: () => string;
24
- export declare const keyValueToString: (key: string, value: any, newLine?: "leading" | "trailing" | null) => string;
25
- export declare const formatRequestMethod: (method?: string) => string;
26
- export declare const formatRequestDuration: (startTime?: number, endTime?: number) => string;
27
- export declare const formatRequestStatusCode: (statusCode?: number) => string;
28
- export declare const formatLogMessage: (values: any[]) => any;
29
- export declare const beautify: (data: any, beautified: boolean) => string;
30
- export declare const convertToCurl: (method: HttpRequest["method"], url: HttpRequest["url"], headers: HttpRequest["requestHeaders"], body: HttpRequest["body"]) => string;
31
- export declare function frozen(_target: Object): void;
32
- export declare function singleton<T extends {
33
- new (...args: any[]): {};
34
- }>(constructor: T): {
35
- new (...args: any[]): {};
36
- "__#1@#instance": {};
37
- } & T;
38
- //# sourceMappingURL=utils.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../../src/core/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,2BAA2B,CAAC;AAChD,OAAO,EAAe,KAAK,WAAW,EAAE,KAAK,UAAU,EAAE,KAAK,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAGjG,eAAO,MAAM,eAAe,UAAW,WAAW,GAAG,gBAAgB;;;;;;;;;;;;;;;;CAuBpE,CAAC;AAKF,eAAO,MAAM,mBAAmB,SAAU,UAAU,CAAC,MAAM,CAAC,WAsB3D,CAAC;AAGF,eAAO,MAAM,qBAAqB,iBAAkB,MAAM,WAAqB,CAAC;AAEhF,eAAO,MAAM,KAAK,UAAW,MAAM,OAAO,MAAM,OAAO,MAAM,WACxB,CAAC;AAEtC,eAAO,MAAM,oBAAoB,cAIhC,CAAC;AAYF,eAAO,MAAM,gBAAgB,QACtB,MAAM,SACJ,GAAG,YACD,SAAS,GAAG,UAAU,GAAG,IAAI,KACrC,MACqG,CAAC;AAEzG,eAAO,MAAM,mBAAmB,YAAa,MAAM,WAAoB,CAAC;AAExE,eAAO,MAAM,qBAAqB,eAAgB,MAAM,YAAY,MAAM,WAGzE,CAAC;AAEF,eAAO,MAAM,uBAAuB,gBAAiB,MAAM,WAAiC,CAAC;AAE7F,eAAO,MAAM,gBAAgB,WAAY,GAAG,EAAE,QAE7C,CAAC;AAEF,eAAO,MAAM,QAAQ,SAAU,GAAG,cAAc,OAAO,WAStD,CAAC;AAEF,eAAO,MAAM,aAAa,WAChB,WAAW,CAAC,QAAQ,CAAC,OACxB,WAAW,CAAC,KAAK,CAAC,WACd,WAAW,CAAC,gBAAgB,CAAC,QAChC,WAAW,CAAC,MAAM,CAAC,WAgB1B,CAAC;AAIF,wBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,QAIrC;AAED,wBAAgB,SAAS,CAAC,CAAC,SAAS;IAAE,KAAK,GAAG,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,CAAA;CAAE,EAAE,WAAW,EAAE,CAAC;kBAIvD,GAAG,EAAE;;MAS7B"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAC3E,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,yBAAyB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"useConsoleInterceptor.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/useConsoleInterceptor.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAE3C,UAAU,wBAAwB;IAChC,WAAW,EAAE,OAAO,CAAC;CACtB;AAID,MAAM,CAAC,OAAO,UAAU,qBAAqB,CAAC,EAAE,WAAW,EAAE,EAAE,wBAAwB;;;;;;EA+CtF"}
@@ -1,12 +0,0 @@
1
- interface NetworkInterceptorParams {
2
- autoEnabled: boolean;
3
- }
4
- export default function useNetworkInterceptor({ autoEnabled }: NetworkInterceptorParams): {
5
- isInterceptorEnabled: boolean;
6
- enableInterception: () => void;
7
- disableInterception: () => void;
8
- clearAllNetworkRequests: () => void;
9
- networkRequests: Map<string, never>;
10
- };
11
- export {};
12
- //# sourceMappingURL=useNetworkInterceptor.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"useNetworkInterceptor.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/useNetworkInterceptor.ts"],"names":[],"mappings":"AAcA,UAAU,wBAAwB;IAChC,WAAW,EAAE,OAAO,CAAC;CACtB;AAUD,MAAM,CAAC,OAAO,UAAU,qBAAqB,CAAC,EAAE,WAAW,EAAE,EAAE,wBAAwB;;;;;;EAqPtF"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"ConsoleInterceptor.d.ts","sourceRoot":"","sources":["../../../../../src/interceptors/ConsoleInterceptor.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAEhD,OAAO,WAAW,MAAM,eAAe,CAAC;AAcxC,MAAM,CAAC,OAAO,OAAO,kBAAmB,SAAQ,WAAW,CAAC,eAAe,CAAC;IAC1E,SAAS,CAAC,QAAQ,CAAC,QAAQ,EAAE,eAAe,CAE1C;IAGF,kBAAkB,IAAI,IAAI;IAqE1B,mBAAmB,IAAI,IAAI;CAkB5B"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"FetchInterceptor.d.ts","sourceRoot":"","sources":["../../../../../src/interceptors/FetchInterceptor.ts"],"names":[],"mappings":"AAGA,OAAO,eAAe,MAAM,mBAAmB,CAAC;AAKhD,MAAM,CAAC,OAAO,OAAO,gBAAiB,SAAQ,eAAe;IAE3D,kBAAkB;IA4GlB,mBAAmB;CASpB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"HttpInterceptor.d.ts","sourceRoot":"","sources":["../../../../../src/interceptors/HttpInterceptor.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAC7C,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAE1D,MAAM,CAAC,OAAO,CAAC,QAAQ,OAAO,eAAgB,SAAQ,kBAAkB,CAAC,YAAY,CAAC;IACpF,SAAS,CAAC,QAAQ,EAAE,YAAY,CAM9B;CACH"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"Interceptor.d.ts","sourceRoot":"","sources":["../../../../../src/interceptors/Interceptor.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,OAAO,CAAC,QAAQ,OAAO,WAAW,CAAC,CAAC,SAAS,MAAM;;IAGxD,IAAI,oBAAoB,IAIkB,OAAO,CAFhD;IAED,SAAS,KAAK,oBAAoB,CAAC,KAAK,EAAE,OAAO,EAEhD;IAED,SAAS,CAAC,QAAQ,CAAC,QAAQ,EAAE,CAAC,CAAC;IAG/B,GAAG,CAAC,CAAC,SAAS,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC;IAK5C,QAAQ,CAAC,kBAAkB,IAAI,IAAI;IACnC,QAAQ,CAAC,mBAAmB,IAAI,IAAI;CACrC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"NetworkInterceptor.d.ts","sourceRoot":"","sources":["../../../../../src/interceptors/NetworkInterceptor.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,MAAM,eAAe,CAAC;AAExC,KAAK,SAAS,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,IAAI,GAAG,MAAM,GAAG,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC,CAAC;CAAE,CAAC;AAExE,8BAAsB,kBAAkB,CAAC,CAAC,SAAS,MAAM,CAAE,SAAQ,WAAW,CAAC,CAAC,CAAC;IAC/E,SAAS,CAAC,YAAY,IAAI,SAAS,CAAC,CAAC,CAAC;IAUtC,SAAS,CAAC,cAAc,IAAI,IAAI;CAKjC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"WebSocketInterceptor.d.ts","sourceRoot":"","sources":["../../../../../src/interceptors/WebSocketInterceptor.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAClD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAQ1D,MAAM,CAAC,OAAO,OAAO,oBAAqB,SAAQ,kBAAkB,CAAC,iBAAiB,CAAC;IACrF,SAAS,CAAC,QAAQ,EAAE,iBAAiB,CAQnC;IAEF,OAAO,CAAC,YAAY,CAAmC;IACvD,OAAO,CAAC,aAAa,CAA6B;IAElD,OAAO,CAAC,mBAAmB;IAc3B,OAAO,CAAC,cAAc;IAsBtB,OAAO,CAAC,gBAAgB;IAOxB,kBAAkB,IAAI,IAAI;IAsC1B,mBAAmB,IAAI,IAAI;CAc5B"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"XHRInterceptor.d.ts","sourceRoot":"","sources":["../../../../../src/interceptors/XHRInterceptor.ts"],"names":[],"mappings":"AAEA,OAAO,eAAe,MAAM,mBAAmB,CAAC;AAOhD,MAAM,CAAC,OAAO,OAAO,cAAe,SAAQ,eAAe;IAEzD,kBAAkB;IAiFlB,mBAAmB;CAWpB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/interceptors/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AACrE,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AACzE,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,kBAAkB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../../../../src/theme/colors.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,MAAM;;;;;;;;;;;EAWV,CAAC;AAEH,eAAe,MAAM,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../../../../src/theme/icons.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,KAAK;;;;;;;;;EAST,CAAC;AAEH,eAAe,KAAK,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../../../src/types/common.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,UAAU,EAAE,gBAAgB,EAAE,MAAM,GAAG,CAAC;AAEnE,oBAAY,WAAW;IACrB,GAAG,QAAQ;IACX,KAAK,UAAU;IACf,EAAE,OAAO;CACV;AAED,oBAAY,aAAa;IACvB,OAAO,YAAY;IACnB,OAAO,YAAY;CACpB;AAED,MAAM,MAAM,EAAE,GAAG,MAAM,GAAG,SAAS,CAAC;AAEpC,MAAM,WAAW,cAAc;IAC7B,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,MAAM,SAAS,GAAG,UAAU,GAAG,SAAS,GAAG,SAAS,GAAG,UAAU,GAAG,UAAU,GAAG,YAAY,CAAC;AAEpG,MAAM,WAAW,aAAa;IAC5B,QAAQ,EAAE,KAAK,GAAG,QAAQ,CAAC;IAC3B,WAAW,EACP;QACE,IAAI,EAAE,aAAa,CAAC,OAAO,CAAC;QAC5B,IAAI,EAAE,WAAW,GAAG,gBAAgB,CAAC;QACrC,WAAW,EAAE,OAAO,CAAC,SAAS,EAAE,YAAY,CAAC,CAAC;QAC9C,UAAU,EAAE,OAAO,CAAC;KACrB,GACD;QACE,IAAI,EAAE,aAAa,CAAC,OAAO,CAAC;QAC5B,IAAI,EAAE,UAAU,CAAC;QACjB,WAAW,EAAE,OAAO,CAAC,SAAS,EAAE,YAAY,CAAC,CAAC;QAC9C,UAAU,EAAE,OAAO,CAAC;KACrB,GACD,IAAI,CAAC;CACV"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"console.d.ts","sourceRoot":"","sources":["../../../../../src/types/console.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,GAAG,EAAE,CAAC;CACf;AAED,MAAM,WAAW,eAAe;IAC9B,QAAQ,EAAE,CAAC,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC,GAAG,IAAI,CAAC;CACxD"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"http.d.ts","sourceRoot":"","sources":["../../../../../src/types/http.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAEhE,MAAM,WAAW,WAAY,SAAQ,cAAc;IACjD,IAAI,EAAE,WAAW,CAAC,KAAK,GAAG,WAAW,CAAC,GAAG,CAAC;IAC1C,MAAM,EAAE,MAAM,CAAC;IACf,cAAc,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACrC,IAAI,CAAC,EAAE,GAAG,CAAC;IACX,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,eAAe,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACtC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,GAAG,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,WAAW,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC,GAAG,IAAI,CAAC;IACxF,aAAa,EAAE,CAAC,CAAC,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC,GAAG,IAAI,CAAC;IACxE,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,EAAE,EAAE,SAAS,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,GAAG,KAAK,IAAI,CAAC,GAAG,IAAI,CAAC;IAC/D,cAAc,EACV,CAAC,CACC,EAAE,EAAE,EAAE,EACN,mBAAmB,EAAE,MAAM,GAAG,SAAS,EACvC,YAAY,EAAE,MAAM,GAAG,SAAS,EAChC,eAAe,EAAE,WAAW,CAAC,iBAAiB,CAAC,KAC5C,IAAI,CAAC,GACV,IAAI,CAAC;IACT,QAAQ,EACJ,CAAC,CACC,EAAE,EAAE,EAAE,EACN,MAAM,EAAE,MAAM,GAAG,SAAS,EAC1B,OAAO,EAAE,MAAM,GAAG,SAAS,EAC3B,OAAO,EAAE,MAAM,EACf,QAAQ,EAAE,GAAG,EACb,WAAW,EAAE,MAAM,GAAG,SAAS,EAC/B,YAAY,EAAE,MAAM,GAAG,SAAS,KAC7B,IAAI,CAAC,GACV,IAAI,CAAC;CACV"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"websocket.d.ts","sourceRoot":"","sources":["../../../../../src/types/websocket.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAE5D,MAAM,WAAW,gBAAiB,SAAQ,cAAc;IACtD,IAAI,EAAE,WAAW,CAAC,EAAE,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IAC9B,OAAO,CAAC,EAAE;QACR,OAAO,EAAE;YAAE,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM,CAAA;SAAE,CAAC;QAC1C,CAAC,UAAU,EAAE,MAAM,GAAG,GAAG,CAAC;KAC3B,CAAC;IACF,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACnC,WAAW,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;CAClD;AAED,MAAM,WAAW,iBAAiB;IAChC,OAAO,EACH,CAAC,CACC,SAAS,EAAE,MAAM,EACjB,GAAG,EAAE,MAAM,EACX,SAAS,CAAC,EAAE,gBAAgB,CAAC,WAAW,CAAC,EACzC,OAAO,CAAC,EAAE,gBAAgB,CAAC,SAAS,CAAC,EACrC,QAAQ,CAAC,EAAE,MAAM,KACd,IAAI,CAAC,GACV,IAAI,CAAC;IACT,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAC,GAAG,IAAI,CAAC;IACxD,KAAK,EAAE,CAAC,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAC,GAAG,IAAI,CAAC;IACzE,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,KAAK,IAAI,CAAC,GAAG,IAAI,CAAC;IAC7D,SAAS,EAAE,CAAC,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,KAAK,IAAI,CAAC,GAAG,IAAI,CAAC;IAC7D,OAAO,EAAE,CAAC,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,gBAAgB,CAAC,aAAa,CAAC,KAAK,IAAI,CAAC,GAAG,IAAI,CAAC;IACrF,OAAO,EAAE,CAAC,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,gBAAgB,CAAC,aAAa,CAAC,KAAK,IAAI,CAAC,GAAG,IAAI,CAAC;CACrF"}
@@ -1,21 +0,0 @@
1
- import { type ReactNode } from 'react';
2
- declare namespace Xenon {
3
- interface Props {
4
- disabled?: boolean;
5
- autoInspectNetworkEnabled?: boolean;
6
- autoInspectConsoleEnabled?: boolean;
7
- bubbleSize?: number;
8
- idleBubbleOpacity?: number;
9
- children?: ReactNode;
10
- }
11
- export const isVisible: () => boolean;
12
- export const show: () => void;
13
- export const hide: () => void;
14
- export function Wrapper({ disabled, children, ...props }: Props): string | number | boolean | Iterable<ReactNode> | import("react/jsx-runtime").JSX.Element | null | undefined;
15
- export namespace Wrapper {
16
- var displayName: string;
17
- }
18
- export {};
19
- }
20
- export default Xenon;
21
- //# sourceMappingURL=Xenon.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Xenon.d.ts","sourceRoot":"","sources":["../../../../../src/ui/Xenon.tsx"],"names":[],"mappings":"AACA,OAAO,EAAiD,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAetF,kBAAU,KAAK,CAAC;IAOd,UAAU,KAAK;QACb,QAAQ,CAAC,EAAE,OAAO,CAAC;QACnB,yBAAyB,CAAC,EAAE,OAAO,CAAC;QACpC,yBAAyB,CAAC,EAAE,OAAO,CAAC;QACpC,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,iBAAiB,CAAC,EAAE,MAAM,CAAC;QAC3B,QAAQ,CAAC,EAAE,SAAS,CAAC;KACtB;IAsBD,MAAM,CAAC,MAAM,SAAS,eAA0C,CAAC;IACjE,MAAM,CAAC,MAAM,IAAI,QAAO,IAA2B,CAAC;IACpD,MAAM,CAAC,MAAM,IAAI,QAAO,IAA2B,CAAC;IAgFpD,MAAM,UAAU,OAAO,CAAC,EAAE,QAAgB,EAAE,QAAQ,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,gHAetE;IAfD,MAAM,WAAU,OAAO;;;;CAkBxB;AAED,eAAe,KAAK,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"Bubble.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/bubble/Bubble.tsx"],"names":[],"mappings":"AACA,OAAO,EAIL,IAAI,EAEJ,KAAK,SAAS,EACd,KAAK,SAAS,EACf,MAAM,cAAc,CAAC;AAOtB,UAAU,WAAW;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CAC9B;AAED,QAAA,MAAM,MAAM,8FA8FX,CAAC;AAgBF,eAAe,MAAM,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"Divider.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/common/Divider.tsx"],"names":[],"mappings":"AAGA,MAAM,CAAC,OAAO,UAAU,OAAO,CAAC,EAAE,IAAI,EAAE,EAAE;IAAE,IAAI,EAAE,YAAY,GAAG,UAAU,CAAA;CAAE,2CAS5E"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"Icon.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/common/Icon.tsx"],"names":[],"mappings":"AAGA,UAAU,SAAS;IACjB,MAAM,EAAE,GAAG,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,CAAC,OAAO,UAAU,IAAI,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,KAAoB,EAAE,EAAE,SAAS,2CAE7E"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"IndexedStack.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/common/IndexedStack.tsx"],"names":[],"mappings":"AAAA,OAAO,EAOL,KAAK,GAAG,EACR,KAAK,aAAa,EACnB,MAAM,OAAO,CAAC;AAGf,UAAU,iBAAiB,CAAC,CAAC,SAAS,MAAM;IAC1C,QAAQ,EAAE,GAAG,CAAC,OAAO,EAAE,CAAC;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,YAAY,EAAE,CAAC,CAAC;CACjB;AAED,MAAM,MAAM,mBAAmB,CAAC,CAAC,SAAS,MAAM,IAAI;IAClD,eAAe,EAAE,MAAM,CAAC,CAAC;IACzB,eAAe,EAAE,CAAC,KAAK,EAAE,CAAC,KAAK,IAAI,CAAC;CACrC,CAAC;AAoCF,QAAA,MAAM,YAAY,EAAwC,CAAC,CAAC,SAAS,MAAM,EACzE,KAAK,EAAE,iBAAiB,CAAC,CAAC,CAAC,GAAG,aAAa,CAAC,mBAAmB,CAAC,CAAC,CAAC,CAAC,KAChE,GAAG,CAAC,OAAO,CAAC;AAEjB,eAAe,YAAY,CAAC"}
@@ -1,10 +0,0 @@
1
- import { type StyleProp, type ViewStyle } from 'react-native';
2
- interface TouchableProps {
3
- onPress: () => void;
4
- children: React.ReactNode;
5
- activeOpacity?: number;
6
- style?: StyleProp<ViewStyle>;
7
- }
8
- export default function Touchable({ onPress, children, activeOpacity, style, }: TouchableProps): import("react/jsx-runtime").JSX.Element;
9
- export {};
10
- //# sourceMappingURL=Touchable.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Touchable.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/common/Touchable.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAoB,KAAK,SAAS,EAAE,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAEhF,UAAU,cAAc;IACtB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CAC9B;AAED,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,EAChC,OAAO,EACP,QAAQ,EACR,aAAmB,EACnB,KAAK,GACN,EAAE,cAAc,2CAMhB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"LogMessageDetails.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/details/LogMessageDetails.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAoB,KAAK,SAAS,EAAE,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAO5F,QAAA,MAAM,iBAAiB;YAAoC,SAAS,CAAC,SAAS,CAAC;8CAqB9E,CAAC;AAaF,eAAe,iBAAiB,CAAC"}
@@ -1,6 +0,0 @@
1
- import { ScrollView, type StyleProp, type ViewStyle } from 'react-native';
2
- declare const NetworkRequestDetails: import("react").ForwardRefExoticComponent<{
3
- style?: StyleProp<ViewStyle>;
4
- } & import("react").RefAttributes<ScrollView>>;
5
- export default NetworkRequestDetails;
6
- //# sourceMappingURL=NetworkRequestDetails.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"NetworkRequestDetails.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/details/NetworkRequestDetails.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAc,KAAK,SAAS,EAAE,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAatF,QAAA,MAAM,qBAAqB;YAAoC,SAAS,CAAC,SAAS,CAAC;8CA8JlF,CAAC;AAwBF,eAAe,qBAAqB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"ConsoleHeader.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/headers/ConsoleHeader.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAGrD,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAErE,UAAU,kBAAkB;IAC1B,aAAa,EAAE,UAAU,CAAC;IAC1B,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CAC9B;AAED,QAAA,MAAM,aAAa,2GAWlB,CAAC;AAEF,eAAe,aAAa,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"DebuggerHeader.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/headers/DebuggerHeader.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAErE,OAAa,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAMtD,UAAU,mBAAmB;IAC3B,aAAa,EAAE,UAAU,CAAC;IAC1B,gBAAgB,EAAE,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,CAAC,CAAC,CAAC;IACnE,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CAC9B;AAED,QAAA,MAAM,cAAc,4GAuEnB,CAAC;AAEF,eAAe,cAAc,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"Header.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/headers/Header.tsx"],"names":[],"mappings":"AAOA,QAAA,MAAM,MAAM,+CAYX,CAAC;AAEF,eAAe,MAAM,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"HeaderComponents.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/headers/HeaderComponents.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAc,KAAK,SAAS,EAAE,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAEtF,OAAa,EAAmC,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAGvF,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AA2FhD,QAAA,MAAM,gBAAgB;8BAxFW;QAAE,aAAa,EAAE,UAAU,CAAA;KAAE;8BAiB7B;QAAE,GAAG,EAAE,SAAS,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE;;;gBAyCC,SAAS,CAAC,SAAS,CAAC;;;;CA8BvB,CAAC;AAEjE,eAAe,gBAAgB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"NetworkHeader.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/headers/NetworkHeader.tsx"],"names":[],"mappings":"AACA,OAAO,EAAS,KAAK,UAAU,EAAE,KAAK,SAAS,EAAE,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAEtF,OAAa,EAAsB,KAAK,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAS/E,UAAU,kBAAkB;IAC1B,aAAa,EAAE,UAAU,CAAC;IAC1B,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CAC9B;AAID,QAAA,MAAM,aAAa,2GA+DlB,CAAC;AAEF,eAAe,aAAa,CAAC"}
@@ -1,5 +0,0 @@
1
- export { default as Bubble } from './bubble/Bubble';
2
- export { default as DebuggerHeader } from './headers/DebuggerHeader';
3
- export { default as ConsolePanel } from './panels/ConsolePanel';
4
- export { default as NetworkPanel } from './panels/NetworkPanel';
5
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACpD,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,0BAA0B,CAAC;AACrE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"ConsolePanelItem.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/items/ConsolePanelItem.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAGjD,UAAU,qBAAsB,SAAQ,UAAU;IAChD,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAED,MAAM,CAAC,OAAO,UAAU,gBAAgB,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,EAAE,qBAAqB,2CAWxF"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"DebuggerHeaderItem.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/items/DebuggerHeaderItem.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAoB,KAAK,kBAAkB,EAAE,MAAM,cAAc,CAAC;AAKzE,UAAU,uBAAuB;IAC/B,OAAO,CAAC,EAAE,kBAAkB,GAAG,MAAM,CAAC;IACtC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAED,MAAM,CAAC,OAAO,UAAU,kBAAkB,CAAC,EACzC,OAAO,EACP,OAAO,EACP,QAAQ,EACR,WAAwB,EACxB,OAAO,GACR,EAAE,uBAAuB,2CAsBzB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"NetworkPanelItem.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/items/NetworkPanelItem.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,WAAW,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAGlE,UAAU,qBAAqB;IAC7B,MAAM,CAAC,EAAE,WAAW,CAAC,QAAQ,CAAC,CAAC;IAC/B,IAAI,EAAE,cAAc,CAAC,KAAK,CAAC,CAAC;IAC5B,SAAS,CAAC,EAAE,cAAc,CAAC,WAAW,CAAC,CAAC;IACxC,OAAO,CAAC,EAAE,cAAc,CAAC,SAAS,CAAC,CAAC;IACpC,MAAM,CAAC,EAAE,cAAc,CAAC,QAAQ,CAAC,CAAC;IAClC,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAsBD,MAAM,CAAC,OAAO,UAAU,gBAAgB,CAAC,EACvC,MAAM,EACN,IAAI,EACJ,SAAS,EACT,OAAO,EACP,MAAM,EACN,OAAO,GACR,EAAE,qBAAqB,2CAuDvB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"NetworkRequestDetailsItem.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/items/NetworkRequestDetailsItem.tsx"],"names":[],"mappings":"AAGA,UAAU,8BAA8B;IACtC,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,CAAC;CACtC;AAED,MAAM,CAAC,OAAO,UAAU,yBAAyB,CAAC,EAChD,KAAK,EACL,OAAO,GACR,EAAE,8BAA8B,2CAoBhC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"ConsolePanel.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/panels/ConsolePanel.tsx"],"names":[],"mappings":"AACA,OAAO,EACL,QAAQ,EAIR,KAAK,SAAS,EACd,KAAK,SAAS,EACf,MAAM,cAAc,CAAC;AAQtB,QAAA,MAAM,YAAY;YAAkC,SAAS,CAAC,SAAS,CAAC;iDAuCtE,CAAC;AAcH,eAAe,YAAY,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"NetworkPanel.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/panels/NetworkPanel.tsx"],"names":[],"mappings":"AACA,OAAO,EACL,QAAQ,EAGR,KAAK,SAAS,EACd,KAAK,SAAS,EACf,MAAM,cAAc,CAAC;AAetB,QAAA,MAAM,YAAY;YAAkC,SAAS,CAAC,SAAS,CAAC;iDA2CtE,CAAC;AASH,eAAe,YAAY,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"Panel.d.ts","sourceRoot":"","sources":["../../../../../../../src/ui/components/panels/Panel.tsx"],"names":[],"mappings":"AAOA,MAAM,CAAC,OAAO,UAAU,KAAK,4CAS5B"}
@@ -1,12 +0,0 @@
1
- import type { Updater } from 'use-immer';
2
- import type { useConsoleInterceptor, useNetworkInterceptor } from '../hooks';
3
- import type { DebuggerState } from '../types';
4
- interface MainContextValue {
5
- debuggerState: DebuggerState;
6
- setDebuggerState: Updater<DebuggerState>;
7
- networkInterceptor: ReturnType<typeof useNetworkInterceptor>;
8
- consoleInterceptor: ReturnType<typeof useConsoleInterceptor>;
9
- }
10
- declare const MainContext: import("react").Context<MainContextValue | null>;
11
- export default MainContext;
12
- //# sourceMappingURL=MainContext.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"MainContext.d.ts","sourceRoot":"","sources":["../../../../../src/contexts/MainContext.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,KAAK,EAAE,qBAAqB,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAC7E,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAE9C,UAAU,gBAAgB;IACxB,aAAa,EAAE,aAAa,CAAC;IAC7B,gBAAgB,EAAE,OAAO,CAAC,aAAa,CAAC,CAAC;IACzC,kBAAkB,EAAE,UAAU,CAAC,OAAO,qBAAqB,CAAC,CAAC;IAC7D,kBAAkB,EAAE,UAAU,CAAC,OAAO,qBAAqB,CAAC,CAAC;CAC9D;AAED,QAAA,MAAM,WAAW,kDAA+C,CAAC;AAEjE,eAAe,WAAW,CAAC"}
@@ -1,2 +0,0 @@
1
- export { default as MainContext } from './MainContext';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/contexts/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const NETWORK_REQUEST_HEADER = "X-React-Native-Xenon";
2
- //# sourceMappingURL=constants.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../../src/core/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,sBAAsB,yBAAyB,CAAC"}
@@ -1,24 +0,0 @@
1
- import type { IndexedStackMethods } from '../ui/components/common/IndexedStack';
2
- export declare enum DebuggerVisibility {
3
- Hidden = -1,
4
- Bubble = 0,
5
- Panel = 1
6
- }
7
- export declare enum PanelState {
8
- Network = 0,
9
- Console = 1,
10
- NetworkDetail = 2,
11
- ConsoleDetail = 3
12
- }
13
- export declare enum HeaderState {
14
- Debugger = 0,
15
- Network = 1,
16
- Console = 2
17
- }
18
- declare const refs: {
19
- debugger: import("react").RefObject<IndexedStackMethods<DebuggerVisibility>>;
20
- panel: import("react").RefObject<IndexedStackMethods<PanelState>>;
21
- header: import("react").RefObject<IndexedStackMethods<HeaderState>>;
22
- };
23
- export default refs;
24
- //# sourceMappingURL=refs.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"refs.d.ts","sourceRoot":"","sources":["../../../../../src/core/refs.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,sCAAsC,CAAC;AAEhF,oBAAY,kBAAkB;IAC5B,MAAM,KAAK;IACX,MAAM,IAAI;IACV,KAAK,IAAI;CACV;AAED,oBAAY,UAAU;IACpB,OAAO,IAAI;IACX,OAAO,IAAI;IACX,aAAa,IAAI;IACjB,aAAa,IAAI;CAClB;AAED,oBAAY,WAAW;IACrB,QAAQ,IAAI;IACZ,OAAO,IAAI;IACX,OAAO,IAAI;CACZ;AAED,QAAA,MAAM,IAAI;;;;CAIT,CAAC;AAEF,eAAe,IAAI,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../../src/core/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,2BAA2B,CAAC;AAChD,OAAO,EAAe,KAAK,WAAW,EAAE,KAAK,UAAU,EAAE,KAAK,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAGjG,eAAO,MAAM,eAAe,UAAW,WAAW,GAAG,gBAAgB;;;;;;;;;;;;;;;;CAuBpE,CAAC;AAKF,eAAO,MAAM,mBAAmB,SAAU,UAAU,CAAC,MAAM,CAAC,WAsB3D,CAAC;AAGF,eAAO,MAAM,qBAAqB,iBAAkB,MAAM,WAAqB,CAAC;AAEhF,eAAO,MAAM,KAAK,UAAW,MAAM,OAAO,MAAM,OAAO,MAAM,WACxB,CAAC;AAEtC,eAAO,MAAM,oBAAoB,cAIhC,CAAC;AAYF,eAAO,MAAM,gBAAgB,QACtB,MAAM,SACJ,GAAG,YACD,SAAS,GAAG,UAAU,GAAG,IAAI,KACrC,MACqG,CAAC;AAEzG,eAAO,MAAM,mBAAmB,YAAa,MAAM,WAAoB,CAAC;AAExE,eAAO,MAAM,qBAAqB,eAAgB,MAAM,YAAY,MAAM,WAGzE,CAAC;AAEF,eAAO,MAAM,uBAAuB,gBAAiB,MAAM,WAAiC,CAAC;AAE7F,eAAO,MAAM,gBAAgB,WAAY,GAAG,EAAE,QAE7C,CAAC;AAEF,eAAO,MAAM,QAAQ,SAAU,GAAG,cAAc,OAAO,WAStD,CAAC;AAEF,eAAO,MAAM,aAAa,WAChB,WAAW,CAAC,QAAQ,CAAC,OACxB,WAAW,CAAC,KAAK,CAAC,WACd,WAAW,CAAC,gBAAgB,CAAC,QAChC,WAAW,CAAC,MAAM,CAAC,WAgB1B,CAAC;AAIF,wBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,QAIrC;AAED,wBAAgB,SAAS,CAAC,CAAC,SAAS;IAAE,KAAK,GAAG,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,CAAA;CAAE,EAAE,WAAW,EAAE,CAAC;kBAIvD,GAAG,EAAE;;MAS7B"}
@@ -1,3 +0,0 @@
1
- export { default as useConsoleInterceptor } from './useConsoleInterceptor';
2
- export { default as useNetworkInterceptor } from './useNetworkInterceptor';
3
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAC3E,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,yBAAyB,CAAC"}
@@ -1,13 +0,0 @@
1
- import type { LogMessage } from '../types';
2
- interface ConsoleInterceptorParams {
3
- autoEnabled: boolean;
4
- }
5
- export default function useConsoleInterceptor({ autoEnabled }: ConsoleInterceptorParams): {
6
- isInterceptorEnabled: boolean;
7
- enableInterception: () => void;
8
- disableInterception: () => void;
9
- clearAllLogMessages: () => void;
10
- logMessages: LogMessage[];
11
- };
12
- export {};
13
- //# sourceMappingURL=useConsoleInterceptor.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"useConsoleInterceptor.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/useConsoleInterceptor.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAE3C,UAAU,wBAAwB;IAChC,WAAW,EAAE,OAAO,CAAC;CACtB;AAID,MAAM,CAAC,OAAO,UAAU,qBAAqB,CAAC,EAAE,WAAW,EAAE,EAAE,wBAAwB;;;;;;EA+CtF"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"useNetworkInterceptor.d.ts","sourceRoot":"","sources":["../../../../../src/hooks/useNetworkInterceptor.ts"],"names":[],"mappings":"AAcA,UAAU,wBAAwB;IAChC,WAAW,EAAE,OAAO,CAAC;CACtB;AAUD,MAAM,CAAC,OAAO,UAAU,qBAAqB,CAAC,EAAE,WAAW,EAAE,EAAE,wBAAwB;;;;;;EAqPtF"}
@@ -1,2 +0,0 @@
1
- export { default } from './ui/Xenon';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC"}
@@ -1,8 +0,0 @@
1
- import type { ConsoleHandlers } from '../types';
2
- import Interceptor from './Interceptor';
3
- export default class ConsoleInterceptor extends Interceptor<ConsoleHandlers> {
4
- protected readonly handlers: ConsoleHandlers;
5
- enableInterception(): void;
6
- disableInterception(): void;
7
- }
8
- //# sourceMappingURL=ConsoleInterceptor.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ConsoleInterceptor.d.ts","sourceRoot":"","sources":["../../../../../src/interceptors/ConsoleInterceptor.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAEhD,OAAO,WAAW,MAAM,eAAe,CAAC;AAcxC,MAAM,CAAC,OAAO,OAAO,kBAAmB,SAAQ,WAAW,CAAC,eAAe,CAAC;IAC1E,SAAS,CAAC,QAAQ,CAAC,QAAQ,EAAE,eAAe,CAE1C;IAGF,kBAAkB,IAAI,IAAI;IAqE1B,mBAAmB,IAAI,IAAI;CAkB5B"}
@@ -1,6 +0,0 @@
1
- import HttpInterceptor from './HttpInterceptor';
2
- export default class FetchInterceptor extends HttpInterceptor {
3
- enableInterception(): void;
4
- disableInterception(): void;
5
- }
6
- //# sourceMappingURL=FetchInterceptor.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"FetchInterceptor.d.ts","sourceRoot":"","sources":["../../../../../src/interceptors/FetchInterceptor.ts"],"names":[],"mappings":"AAGA,OAAO,eAAe,MAAM,mBAAmB,CAAC;AAKhD,MAAM,CAAC,OAAO,OAAO,gBAAiB,SAAQ,eAAe;IAE3D,kBAAkB;IA4GlB,mBAAmB;CASpB"}
@@ -1,6 +0,0 @@
1
- import type { HttpHandlers } from '../types';
2
- import { NetworkInterceptor } from './NetworkInterceptor';
3
- export default abstract class HttpInterceptor extends NetworkInterceptor<HttpHandlers> {
4
- protected handlers: HttpHandlers;
5
- }
6
- //# sourceMappingURL=HttpInterceptor.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"HttpInterceptor.d.ts","sourceRoot":"","sources":["../../../../../src/interceptors/HttpInterceptor.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAC7C,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAE1D,MAAM,CAAC,OAAO,CAAC,QAAQ,OAAO,eAAgB,SAAQ,kBAAkB,CAAC,YAAY,CAAC;IACpF,SAAS,CAAC,QAAQ,EAAE,YAAY,CAM9B;CACH"}
@@ -1,10 +0,0 @@
1
- export default abstract class Interceptor<T extends Object> {
2
- #private;
3
- get isInterceptorEnabled(): boolean;
4
- protected set isInterceptorEnabled(value: boolean);
5
- protected abstract handlers: T;
6
- set<K extends keyof T>(key: K, handler: T[K]): this;
7
- abstract enableInterception(): void;
8
- abstract disableInterception(): void;
9
- }
10
- //# sourceMappingURL=Interceptor.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Interceptor.d.ts","sourceRoot":"","sources":["../../../../../src/interceptors/Interceptor.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,OAAO,CAAC,QAAQ,OAAO,WAAW,CAAC,CAAC,SAAS,MAAM;;IAGxD,IAAI,oBAAoB,IAIkB,OAAO,CAFhD;IAED,SAAS,KAAK,oBAAoB,CAAC,KAAK,EAAE,OAAO,EAEhD;IAED,SAAS,CAAC,QAAQ,CAAC,QAAQ,EAAE,CAAC,CAAC;IAG/B,GAAG,CAAC,CAAC,SAAS,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC;IAK5C,QAAQ,CAAC,kBAAkB,IAAI,IAAI;IACnC,QAAQ,CAAC,mBAAmB,IAAI,IAAI;CACrC"}
@@ -1,10 +0,0 @@
1
- import Interceptor from './Interceptor';
2
- type Callbacks<T> = {
3
- [K in keyof T as `${string & K}Callback`]: T[K];
4
- };
5
- export declare abstract class NetworkInterceptor<T extends Object> extends Interceptor<T> {
6
- protected getCallbacks(): Callbacks<T>;
7
- protected clearCallbacks(): void;
8
- }
9
- export {};
10
- //# sourceMappingURL=NetworkInterceptor.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"NetworkInterceptor.d.ts","sourceRoot":"","sources":["../../../../../src/interceptors/NetworkInterceptor.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,MAAM,eAAe,CAAC;AAExC,KAAK,SAAS,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,IAAI,GAAG,MAAM,GAAG,CAAC,UAAU,GAAG,CAAC,CAAC,CAAC,CAAC;CAAE,CAAC;AAExE,8BAAsB,kBAAkB,CAAC,CAAC,SAAS,MAAM,CAAE,SAAQ,WAAW,CAAC,CAAC,CAAC;IAC/E,SAAS,CAAC,YAAY,IAAI,SAAS,CAAC,CAAC,CAAC;IAUtC,SAAS,CAAC,cAAc,IAAI,IAAI;CAKjC"}
@@ -1,13 +0,0 @@
1
- import type { WebSocketHandlers } from '../types';
2
- import { NetworkInterceptor } from './NetworkInterceptor';
3
- export default class WebSocketInterceptor extends NetworkInterceptor<WebSocketHandlers> {
4
- protected handlers: WebSocketHandlers;
5
- private eventEmitter;
6
- private subscriptions;
7
- private arrayBufferToString;
8
- private registerEvents;
9
- private unregisterEvents;
10
- enableInterception(): void;
11
- disableInterception(): void;
12
- }
13
- //# sourceMappingURL=WebSocketInterceptor.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"WebSocketInterceptor.d.ts","sourceRoot":"","sources":["../../../../../src/interceptors/WebSocketInterceptor.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAClD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAQ1D,MAAM,CAAC,OAAO,OAAO,oBAAqB,SAAQ,kBAAkB,CAAC,iBAAiB,CAAC;IACrF,SAAS,CAAC,QAAQ,EAAE,iBAAiB,CAQnC;IAEF,OAAO,CAAC,YAAY,CAAmC;IACvD,OAAO,CAAC,aAAa,CAA6B;IAElD,OAAO,CAAC,mBAAmB;IAc3B,OAAO,CAAC,cAAc;IAsBtB,OAAO,CAAC,gBAAgB;IAOxB,kBAAkB,IAAI,IAAI;IAsC1B,mBAAmB,IAAI,IAAI;CAc5B"}
@@ -1,6 +0,0 @@
1
- import HttpInterceptor from './HttpInterceptor';
2
- export default class XHRInterceptor extends HttpInterceptor {
3
- enableInterception(): void;
4
- disableInterception(): void;
5
- }
6
- //# sourceMappingURL=XHRInterceptor.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"XHRInterceptor.d.ts","sourceRoot":"","sources":["../../../../../src/interceptors/XHRInterceptor.ts"],"names":[],"mappings":"AAEA,OAAO,eAAe,MAAM,mBAAmB,CAAC;AAOhD,MAAM,CAAC,OAAO,OAAO,cAAe,SAAQ,eAAe;IAEzD,kBAAkB;IAiFlB,mBAAmB;CAWpB"}
@@ -1,5 +0,0 @@
1
- export { default as ConsoleInterceptor } from './ConsoleInterceptor';
2
- export { default as FetchInterceptor } from './FetchInterceptor';
3
- export { default as WebSocketInterceptor } from './WebSocketInterceptor';
4
- export { default as XHRInterceptor } from './XHRInterceptor';
5
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/interceptors/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AACrE,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AACzE,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,kBAAkB,CAAC"}
@@ -1,14 +0,0 @@
1
- declare const colors: Readonly<{
2
- black: "#0a0a0a";
3
- red: "#ff6467";
4
- green: "#05df72";
5
- blue: "#51a2ff";
6
- yellow: "#fcc800";
7
- cyan: "#00d3f2";
8
- purple: "#a684ff";
9
- gray: "#a1a1a1";
10
- lightGray: "#e5e5e5";
11
- white: "#ffffff";
12
- }>;
13
- export default colors;
14
- //# sourceMappingURL=colors.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../../../../src/theme/colors.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,MAAM;;;;;;;;;;;EAWV,CAAC;AAEH,eAAe,MAAM,CAAC"}