react-native-debug-toolkit 0.6.3 → 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 (283) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +150 -212
  3. package/lib/commonjs/components/ClipboardTab.js +92 -0
  4. package/lib/commonjs/components/ClipboardTab.js.map +1 -0
  5. package/lib/commonjs/components/ConsoleLogTab.js +295 -0
  6. package/lib/commonjs/components/ConsoleLogTab.js.map +1 -0
  7. package/lib/commonjs/components/EnvironmentTab.js +288 -0
  8. package/lib/commonjs/components/EnvironmentTab.js.map +1 -0
  9. package/lib/commonjs/components/FloatPanelView.js +797 -0
  10. package/lib/commonjs/components/FloatPanelView.js.map +1 -0
  11. package/lib/commonjs/components/NavigationLogTab.js +131 -0
  12. package/lib/commonjs/components/NavigationLogTab.js.map +1 -0
  13. package/lib/commonjs/components/NetworkLogTab.js +575 -0
  14. package/lib/commonjs/components/NetworkLogTab.js.map +1 -0
  15. package/lib/commonjs/components/ThirdPartyLibsTab.js +97 -0
  16. package/lib/commonjs/components/ThirdPartyLibsTab.js.map +1 -0
  17. package/lib/commonjs/components/TrackLogTab.js +372 -0
  18. package/lib/commonjs/components/TrackLogTab.js.map +1 -0
  19. package/lib/commonjs/components/ZustandLogTab.js +451 -0
  20. package/lib/commonjs/components/ZustandLogTab.js.map +1 -0
  21. package/lib/commonjs/components/shared/CollapsibleSection.js +84 -0
  22. package/lib/commonjs/components/shared/CollapsibleSection.js.map +1 -0
  23. package/lib/commonjs/components/shared/CopyButton.js +64 -0
  24. package/lib/commonjs/components/shared/CopyButton.js.map +1 -0
  25. package/lib/commonjs/components/shared/JsonView.js +157 -0
  26. package/lib/commonjs/components/shared/JsonView.js.map +1 -0
  27. package/lib/commonjs/core/DebugToolkit.js +142 -0
  28. package/lib/commonjs/core/DebugToolkit.js.map +1 -0
  29. package/lib/commonjs/core/DebugToolkitProvider.js +64 -0
  30. package/lib/commonjs/core/DebugToolkitProvider.js.map +1 -0
  31. package/lib/commonjs/features/ClipboardFeature.js +17 -0
  32. package/lib/commonjs/features/ClipboardFeature.js.map +1 -0
  33. package/lib/commonjs/features/ConsoleLogFeature.js +98 -0
  34. package/lib/commonjs/features/ConsoleLogFeature.js.map +1 -0
  35. package/lib/commonjs/features/EnvironmentFeature.js +168 -0
  36. package/lib/commonjs/features/EnvironmentFeature.js.map +1 -0
  37. package/lib/commonjs/features/NavigationLogFeature.js +60 -0
  38. package/lib/commonjs/features/NavigationLogFeature.js.map +1 -0
  39. package/lib/commonjs/features/NetworkFeature.js +328 -0
  40. package/lib/commonjs/features/NetworkFeature.js.map +1 -0
  41. package/lib/commonjs/features/ThirdPartyLibsFeature.js +51 -0
  42. package/lib/commonjs/features/ThirdPartyLibsFeature.js.map +1 -0
  43. package/lib/commonjs/features/TrackFeature.js +55 -0
  44. package/lib/commonjs/features/TrackFeature.js.map +1 -0
  45. package/lib/commonjs/features/ZustandLogFeature.js +76 -0
  46. package/lib/commonjs/features/ZustandLogFeature.js.map +1 -0
  47. package/lib/commonjs/hooks/useNavigationLogger.js +78 -0
  48. package/lib/commonjs/hooks/useNavigationLogger.js.map +1 -0
  49. package/lib/commonjs/hooks/useSlideDetailAnimation.js +53 -0
  50. package/lib/commonjs/hooks/useSlideDetailAnimation.js.map +1 -0
  51. package/lib/commonjs/index.js +165 -0
  52. package/lib/commonjs/index.js.map +1 -0
  53. package/lib/commonjs/initialize.js +161 -0
  54. package/lib/commonjs/initialize.js.map +1 -0
  55. package/lib/commonjs/native/NativeDebugLibs.js +58 -0
  56. package/lib/commonjs/native/NativeDebugLibs.js.map +1 -0
  57. package/lib/commonjs/package.json +1 -0
  58. package/lib/commonjs/types/index.js +6 -0
  59. package/lib/commonjs/types/index.js.map +1 -0
  60. package/lib/commonjs/utils/constants.js +135 -0
  61. package/lib/commonjs/utils/constants.js.map +1 -0
  62. package/lib/commonjs/utils/copyToComputer.js +97 -0
  63. package/lib/commonjs/utils/copyToComputer.js.map +1 -0
  64. package/lib/commonjs/utils/createEventChannel.js +21 -0
  65. package/lib/commonjs/utils/createEventChannel.js.map +1 -0
  66. package/lib/commonjs/utils/createObservableStore.js +38 -0
  67. package/lib/commonjs/utils/createObservableStore.js.map +1 -0
  68. package/lib/commonjs/utils/safeStringify.js +27 -0
  69. package/lib/commonjs/utils/safeStringify.js.map +1 -0
  70. package/lib/module/components/ClipboardTab.js +86 -0
  71. package/lib/module/components/ClipboardTab.js.map +1 -0
  72. package/lib/module/components/ConsoleLogTab.js +290 -0
  73. package/lib/module/components/ConsoleLogTab.js.map +1 -0
  74. package/lib/module/components/EnvironmentTab.js +282 -0
  75. package/lib/module/components/EnvironmentTab.js.map +1 -0
  76. package/lib/module/components/FloatPanelView.js +791 -0
  77. package/lib/module/components/FloatPanelView.js.map +1 -0
  78. package/lib/module/components/NavigationLogTab.js +126 -0
  79. package/lib/module/components/NavigationLogTab.js.map +1 -0
  80. package/lib/module/components/NetworkLogTab.js +570 -0
  81. package/lib/module/components/NetworkLogTab.js.map +1 -0
  82. package/lib/module/components/ThirdPartyLibsTab.js +91 -0
  83. package/lib/module/components/ThirdPartyLibsTab.js.map +1 -0
  84. package/lib/module/components/TrackLogTab.js +367 -0
  85. package/lib/module/components/TrackLogTab.js.map +1 -0
  86. package/lib/module/components/ZustandLogTab.js +446 -0
  87. package/lib/module/components/ZustandLogTab.js.map +1 -0
  88. package/lib/module/components/shared/CollapsibleSection.js +78 -0
  89. package/lib/module/components/shared/CollapsibleSection.js.map +1 -0
  90. package/lib/module/components/shared/CopyButton.js +58 -0
  91. package/lib/module/components/shared/CopyButton.js.map +1 -0
  92. package/lib/module/components/shared/JsonView.js +152 -0
  93. package/lib/module/components/shared/JsonView.js.map +1 -0
  94. package/lib/module/core/DebugToolkit.js +137 -0
  95. package/lib/module/core/DebugToolkit.js.map +1 -0
  96. package/lib/module/core/DebugToolkitProvider.js +58 -0
  97. package/lib/module/core/DebugToolkitProvider.js.map +1 -0
  98. package/lib/module/features/ClipboardFeature.js +12 -0
  99. package/lib/module/features/ClipboardFeature.js.map +1 -0
  100. package/lib/module/features/ConsoleLogFeature.js +93 -0
  101. package/lib/module/features/ConsoleLogFeature.js.map +1 -0
  102. package/lib/module/features/EnvironmentFeature.js +164 -0
  103. package/lib/module/features/EnvironmentFeature.js.map +1 -0
  104. package/lib/module/features/NavigationLogFeature.js +54 -0
  105. package/lib/module/features/NavigationLogFeature.js.map +1 -0
  106. package/lib/module/features/NetworkFeature.js +322 -0
  107. package/lib/module/features/NetworkFeature.js.map +1 -0
  108. package/lib/module/features/ThirdPartyLibsFeature.js +46 -0
  109. package/lib/module/features/ThirdPartyLibsFeature.js.map +1 -0
  110. package/lib/module/features/TrackFeature.js +49 -0
  111. package/lib/module/features/TrackFeature.js.map +1 -0
  112. package/lib/module/features/ZustandLogFeature.js +69 -0
  113. package/lib/module/features/ZustandLogFeature.js.map +1 -0
  114. package/lib/module/hooks/useNavigationLogger.js +74 -0
  115. package/lib/module/hooks/useNavigationLogger.js.map +1 -0
  116. package/lib/module/hooks/useSlideDetailAnimation.js +50 -0
  117. package/lib/module/hooks/useSlideDetailAnimation.js.map +1 -0
  118. package/lib/module/index.js +29 -0
  119. package/lib/module/index.js.map +1 -0
  120. package/lib/module/initialize.js +156 -0
  121. package/lib/module/initialize.js.map +1 -0
  122. package/lib/module/native/NativeDebugLibs.js +54 -0
  123. package/lib/module/native/NativeDebugLibs.js.map +1 -0
  124. package/lib/module/package.json +1 -0
  125. package/lib/module/types/index.js +4 -0
  126. package/lib/module/types/index.js.map +1 -0
  127. package/lib/module/utils/constants.js +130 -0
  128. package/lib/module/utils/constants.js.map +1 -0
  129. package/lib/module/utils/copyToComputer.js +91 -0
  130. package/lib/module/utils/copyToComputer.js.map +1 -0
  131. package/lib/module/utils/createEventChannel.js +17 -0
  132. package/lib/module/utils/createEventChannel.js.map +1 -0
  133. package/lib/module/utils/createObservableStore.js +34 -0
  134. package/lib/module/utils/createObservableStore.js.map +1 -0
  135. package/lib/module/utils/safeStringify.js +23 -0
  136. package/lib/module/utils/safeStringify.js.map +1 -0
  137. package/lib/typescript/src/components/ClipboardTab.d.ts +4 -0
  138. package/lib/typescript/src/components/ClipboardTab.d.ts.map +1 -0
  139. package/lib/typescript/src/components/ConsoleLogTab.d.ts +4 -0
  140. package/lib/typescript/src/components/ConsoleLogTab.d.ts.map +1 -0
  141. package/lib/typescript/src/components/EnvironmentTab.d.ts +4 -0
  142. package/lib/typescript/src/components/EnvironmentTab.d.ts.map +1 -0
  143. package/lib/typescript/src/components/FloatPanelView.d.ts +64 -0
  144. package/lib/typescript/src/components/FloatPanelView.d.ts.map +1 -0
  145. package/lib/typescript/src/components/NavigationLogTab.d.ts +4 -0
  146. package/lib/typescript/src/components/NavigationLogTab.d.ts.map +1 -0
  147. package/lib/typescript/src/components/NetworkLogTab.d.ts +4 -0
  148. package/lib/typescript/src/components/NetworkLogTab.d.ts.map +1 -0
  149. package/lib/typescript/src/components/ThirdPartyLibsTab.d.ts +4 -0
  150. package/lib/typescript/src/components/ThirdPartyLibsTab.d.ts.map +1 -0
  151. package/lib/typescript/src/components/TrackLogTab.d.ts +4 -0
  152. package/lib/typescript/src/components/TrackLogTab.d.ts.map +1 -0
  153. package/lib/typescript/src/components/ZustandLogTab.d.ts +4 -0
  154. package/lib/typescript/src/components/ZustandLogTab.d.ts.map +1 -0
  155. package/lib/typescript/src/components/shared/CollapsibleSection.d.ts +9 -0
  156. package/lib/typescript/src/components/shared/CollapsibleSection.d.ts.map +1 -0
  157. package/lib/typescript/src/components/shared/CopyButton.d.ts +12 -0
  158. package/lib/typescript/src/components/shared/CopyButton.d.ts.map +1 -0
  159. package/lib/typescript/src/components/shared/JsonView.d.ts +6 -0
  160. package/lib/typescript/src/components/shared/JsonView.d.ts.map +1 -0
  161. package/lib/typescript/src/core/DebugToolkit.d.ts +27 -0
  162. package/lib/typescript/src/core/DebugToolkit.d.ts.map +1 -0
  163. package/lib/typescript/src/core/DebugToolkitProvider.d.ts +18 -0
  164. package/lib/typescript/src/core/DebugToolkitProvider.d.ts.map +1 -0
  165. package/lib/typescript/src/features/ClipboardFeature.d.ts +3 -0
  166. package/lib/typescript/src/features/ClipboardFeature.d.ts.map +1 -0
  167. package/lib/typescript/src/features/ConsoleLogFeature.d.ts +7 -0
  168. package/lib/typescript/src/features/ConsoleLogFeature.d.ts.map +1 -0
  169. package/lib/typescript/src/features/EnvironmentFeature.d.ts +8 -0
  170. package/lib/typescript/src/features/EnvironmentFeature.d.ts.map +1 -0
  171. package/lib/typescript/src/features/NavigationLogFeature.d.ts +8 -0
  172. package/lib/typescript/src/features/NavigationLogFeature.d.ts.map +1 -0
  173. package/lib/typescript/src/features/NetworkFeature.d.ts +28 -0
  174. package/lib/typescript/src/features/NetworkFeature.d.ts.map +1 -0
  175. package/lib/typescript/src/features/ThirdPartyLibsFeature.d.ts +3 -0
  176. package/lib/typescript/src/features/ThirdPartyLibsFeature.d.ts.map +1 -0
  177. package/lib/typescript/src/features/TrackFeature.d.ts +12 -0
  178. package/lib/typescript/src/features/TrackFeature.d.ts.map +1 -0
  179. package/lib/typescript/src/features/ZustandLogFeature.d.ts +29 -0
  180. package/lib/typescript/src/features/ZustandLogFeature.d.ts.map +1 -0
  181. package/lib/typescript/src/hooks/useNavigationLogger.d.ts +20 -0
  182. package/lib/typescript/src/hooks/useNavigationLogger.d.ts.map +1 -0
  183. package/lib/typescript/src/hooks/useSlideDetailAnimation.d.ts +11 -0
  184. package/lib/typescript/src/hooks/useSlideDetailAnimation.d.ts.map +1 -0
  185. package/lib/typescript/src/index.d.ts +26 -0
  186. package/lib/typescript/src/index.d.ts.map +1 -0
  187. package/lib/typescript/src/initialize.d.ts +51 -0
  188. package/lib/typescript/src/initialize.d.ts.map +1 -0
  189. package/lib/typescript/src/native/NativeDebugLibs.d.ts +11 -0
  190. package/lib/typescript/src/native/NativeDebugLibs.d.ts.map +1 -0
  191. package/lib/typescript/src/types/index.d.ts +112 -0
  192. package/lib/typescript/src/types/index.d.ts.map +1 -0
  193. package/lib/typescript/src/utils/constants.d.ts +96 -0
  194. package/lib/typescript/src/utils/constants.d.ts.map +1 -0
  195. package/lib/typescript/src/utils/copyToComputer.d.ts +30 -0
  196. package/lib/typescript/src/utils/copyToComputer.d.ts.map +1 -0
  197. package/lib/typescript/src/utils/createEventChannel.d.ts +7 -0
  198. package/lib/typescript/src/utils/createEventChannel.d.ts.map +1 -0
  199. package/lib/typescript/src/utils/createObservableStore.d.ts +9 -0
  200. package/lib/typescript/src/utils/createObservableStore.d.ts.map +1 -0
  201. package/lib/typescript/src/utils/safeStringify.d.ts +6 -0
  202. package/lib/typescript/src/utils/safeStringify.d.ts.map +1 -0
  203. package/package.json +63 -24
  204. package/src/components/ClipboardTab.tsx +81 -0
  205. package/src/components/ConsoleLogTab.tsx +209 -0
  206. package/src/components/EnvironmentTab.tsx +276 -0
  207. package/src/components/FloatPanelView.tsx +714 -0
  208. package/src/components/NavigationLogTab.tsx +66 -0
  209. package/src/components/NetworkLogTab.tsx +411 -0
  210. package/src/components/ThirdPartyLibsTab.tsx +63 -0
  211. package/src/components/TrackLogTab.tsx +245 -0
  212. package/src/components/ZustandLogTab.tsx +305 -0
  213. package/src/components/shared/CollapsibleSection.tsx +78 -0
  214. package/src/components/shared/CopyButton.tsx +68 -0
  215. package/src/components/shared/JsonView.tsx +125 -0
  216. package/src/core/DebugToolkit.tsx +174 -0
  217. package/src/core/DebugToolkitProvider.tsx +89 -0
  218. package/src/features/ClipboardFeature.ts +11 -0
  219. package/src/features/ConsoleLogFeature.ts +118 -0
  220. package/src/features/EnvironmentFeature.ts +194 -0
  221. package/src/features/NavigationLogFeature.ts +74 -0
  222. package/src/features/NetworkFeature.ts +488 -0
  223. package/src/features/ThirdPartyLibsFeature.ts +42 -0
  224. package/src/features/TrackFeature.ts +69 -0
  225. package/src/features/ZustandLogFeature.ts +127 -0
  226. package/src/hooks/useNavigationLogger.ts +107 -0
  227. package/src/hooks/useSlideDetailAnimation.ts +45 -0
  228. package/src/index.ts +52 -0
  229. package/src/initialize.ts +214 -0
  230. package/src/native/NativeDebugLibs.ts +74 -0
  231. package/src/types/index.ts +138 -0
  232. package/src/utils/constants.ts +91 -0
  233. package/src/utils/copyToComputer.ts +104 -0
  234. package/src/utils/createEventChannel.ts +22 -0
  235. package/src/utils/createObservableStore.ts +42 -0
  236. package/src/utils/safeStringify.ts +25 -0
  237. package/.cursor/rules/react-native.mdc +0 -41
  238. package/README.zh-CN.md +0 -230
  239. package/android/build.gradle +0 -34
  240. package/android/src/main/AndroidManifest.xml +0 -8
  241. package/android/src/main/java/com/reactnative/debuglibs/BuildTypeModule.java +0 -44
  242. package/android/src/main/java/com/reactnative/debuglibs/BuildTypePackage.java +0 -25
  243. package/android/src/main/java/com/reactnative/debuglibs/RNDebugLibsModule.java +0 -75
  244. package/android/src/main/java/com/reactnative/debuglibs/RNDebugLibsPackage.java +0 -28
  245. package/index.js +0 -41
  246. package/ios/BuildTypeModule.h +0 -9
  247. package/ios/BuildTypeModule.m +0 -42
  248. package/ios/RNDebugLibs.h +0 -10
  249. package/ios/RNDebugLibs.m +0 -79
  250. package/lib/DebugToolKit.js +0 -126
  251. package/lib/EnvironmentManager.ts +0 -80
  252. package/lib/NativeDebugLibs.js +0 -67
  253. package/lib/features/ConsoleLogFeature.js +0 -70
  254. package/lib/features/NavigationLogFeature.js +0 -45
  255. package/lib/features/NetworkFeature.js +0 -389
  256. package/lib/features/PerformanceFeature.js +0 -390
  257. package/lib/features/ThirdPartyLibsFeature.js +0 -63
  258. package/lib/features/TrackFeature.js +0 -94
  259. package/lib/features/ZustandLogFeature.js +0 -44
  260. package/lib/hooks/useNavigationLogger.js +0 -92
  261. package/lib/index.js +0 -114
  262. package/lib/navigation/NavigationLogger.js +0 -1
  263. package/lib/types/TrackTypes.ts +0 -92
  264. package/lib/utils/DebugConst.js +0 -67
  265. package/lib/utils/StorageUtils.js +0 -80
  266. package/lib/views/ConsoleLogDetails.js +0 -314
  267. package/lib/views/FloatPanelView.js +0 -697
  268. package/lib/views/HttpLogDetails.js +0 -648
  269. package/lib/views/NavigationLogDetails.js +0 -302
  270. package/lib/views/RestartModal.js +0 -75
  271. package/lib/views/SubViewConsoleLogs.js +0 -209
  272. package/lib/views/SubViewEnvironment.js +0 -73
  273. package/lib/views/SubViewHTTPLogs.js +0 -235
  274. package/lib/views/SubViewNavigationLogs.js +0 -199
  275. package/lib/views/SubViewPerformance.js +0 -515
  276. package/lib/views/SubViewThirdPartyLibs.js +0 -239
  277. package/lib/views/SubViewTrackLogs.js +0 -318
  278. package/lib/views/SubViewZustandLogs.js +0 -279
  279. package/lib/views/TabView.js +0 -66
  280. package/lib/views/TrackLogDetails.js +0 -481
  281. package/lib/views/ZustandLogDetails.js +0 -355
  282. package/react-native-debug-toolkit.podspec +0 -25
  283. package/react-native.config.js +0 -18
@@ -0,0 +1 @@
1
+ {"version":3,"names":["safeStringify","value","space","seen","WeakSet","JSON","stringify","_","val","has","add","String"],"sourceRoot":"../../../src","sources":["utils/safeStringify.ts"],"mappings":";;AAAA;AACA;AACA;AACA;AACA,OAAO,SAASA,aAAaA,CAACC,KAAc,EAAEC,KAAc,EAAU;EACpE,IAAI;IACF,MAAMC,IAAI,GAAG,IAAIC,OAAO,CAAC,CAAC;IAE1B,OAAOC,IAAI,CAACC,SAAS,CACnBL,KAAK,EACL,CAACM,CAAC,EAAEC,GAAG,KAAK;MACV,IAAI,OAAOA,GAAG,KAAK,QAAQ,IAAIA,GAAG,KAAK,IAAI,EAAE;QAC3C,IAAIL,IAAI,CAACM,GAAG,CAACD,GAAG,CAAC,EAAE;UACjB,OAAO,YAAY;QACrB;QACAL,IAAI,CAACO,GAAG,CAACF,GAAG,CAAC;MACf;MACA,OAAOA,GAAG;IACZ,CAAC,EACDN,KACF,CAAC;EACH,CAAC,CAAC,MAAM;IACN,OAAOS,MAAM,CAACV,KAAK,CAAC;EACtB;AACF","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import type { DebugFeatureRenderProps } from '../types';
3
+ export declare const ClipboardTab: React.FC<DebugFeatureRenderProps<void>>;
4
+ //# sourceMappingURL=ClipboardTab.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ClipboardTab.d.ts","sourceRoot":"","sources":["../../../../src/components/ClipboardTab.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAgC,MAAM,OAAO,CAAC;AAIrD,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,UAAU,CAAC;AAExD,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,uBAAuB,CAAC,IAAI,CAAC,CAqChE,CAAC"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import type { ConsoleLogEntry, DebugFeatureRenderProps } from '../types';
3
+ export declare const ConsoleLogTab: React.FC<DebugFeatureRenderProps<ConsoleLogEntry>>;
4
+ //# sourceMappingURL=ConsoleLogTab.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ConsoleLogTab.d.ts","sourceRoot":"","sources":["../../../../src/components/ConsoleLogTab.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AASxC,OAAO,KAAK,EAAE,eAAe,EAAE,uBAAuB,EAAE,MAAM,UAAU,CAAC;AAgBzE,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,uBAAuB,CAAC,eAAe,CAAC,CAyF3E,CAAC"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import type { DebugFeatureRenderProps, EnvironmentState } from '../types';
3
+ export declare const EnvironmentTab: React.FC<DebugFeatureRenderProps<EnvironmentState>>;
4
+ //# sourceMappingURL=EnvironmentTab.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EnvironmentTab.d.ts","sourceRoot":"","sources":["../../../../src/components/EnvironmentTab.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,uBAAuB,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAY1E,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,uBAAuB,CAAC,gBAAgB,CAAC,CA+F9E,CAAC"}
@@ -0,0 +1,64 @@
1
+ import React, { Component } from 'react';
2
+ import { Animated } from 'react-native';
3
+ import type { DebugFeature } from '../types';
4
+ interface FloatPanelViewProps {
5
+ features: DebugFeature[];
6
+ onClose: () => void;
7
+ onClearAll: () => void;
8
+ }
9
+ interface FloatPanelViewState {
10
+ isOpen: boolean;
11
+ toFloat: boolean;
12
+ pan: Animated.ValueXY;
13
+ scale: Animated.Value;
14
+ lastPosition: {
15
+ x: number;
16
+ y: number;
17
+ };
18
+ activeTab: number;
19
+ panelTranslateY: Animated.Value;
20
+ backdropOpacity: Animated.Value;
21
+ contentOpacity: Animated.Value;
22
+ contentTranslateX: Animated.Value;
23
+ underlineTranslateX: Animated.Value;
24
+ underlineWidth: number;
25
+ }
26
+ export declare class FloatPanelView extends Component<FloatPanelViewProps, FloatPanelViewState> {
27
+ private tabScrollViewRef;
28
+ private gestureResponder;
29
+ private panelResponder;
30
+ private swipeResponder;
31
+ private unsubscribeFns;
32
+ private refreshTimeout;
33
+ private isDisposed;
34
+ private isSwitchingTab;
35
+ private underlineInitialized;
36
+ private tabScrollOffset;
37
+ private tabViewportWidth;
38
+ private tabContentWidth;
39
+ private tabLayouts;
40
+ constructor(props: FloatPanelViewProps);
41
+ componentDidMount(): void;
42
+ componentDidUpdate(prevProps: FloatPanelViewProps): void;
43
+ componentWillUnmount(): void;
44
+ private scheduleRefresh;
45
+ private subscribeToFeatures;
46
+ private unsubscribeFromFeatures;
47
+ private togglePanel;
48
+ private openPanel;
49
+ private closePanel;
50
+ private resetTabMeasurements;
51
+ private switchTab;
52
+ private animateUnderline;
53
+ private getMaxTabScrollOffset;
54
+ private getClampedTabScrollOffset;
55
+ private getTabScrollTarget;
56
+ private tryInitializeTabBar;
57
+ private syncUnderlineToActiveTab;
58
+ private handleTabLayout;
59
+ private getTabs;
60
+ private renderFeatureContent;
61
+ render(): React.JSX.Element;
62
+ }
63
+ export {};
64
+ //# sourceMappingURL=FloatPanelView.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FloatPanelView.d.ts","sourceRoot":"","sources":["../../../../src/components/FloatPanelView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACzC,OAAO,EAIL,QAAQ,EAMT,MAAM,cAAc,CAAC;AAEtB,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAE7C,UAAU,mBAAmB;IAC3B,QAAQ,EAAE,YAAY,EAAE,CAAC;IACzB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,UAAU,EAAE,MAAM,IAAI,CAAC;CACxB;AAED,UAAU,mBAAmB;IAC3B,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,OAAO,CAAC;IACjB,GAAG,EAAE,QAAQ,CAAC,OAAO,CAAC;IACtB,KAAK,EAAE,QAAQ,CAAC,KAAK,CAAC;IACtB,YAAY,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACvC,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,EAAE,QAAQ,CAAC,KAAK,CAAC;IAChC,eAAe,EAAE,QAAQ,CAAC,KAAK,CAAC;IAChC,cAAc,EAAE,QAAQ,CAAC,KAAK,CAAC;IAC/B,iBAAiB,EAAE,QAAQ,CAAC,KAAK,CAAC;IAClC,mBAAmB,EAAE,QAAQ,CAAC,KAAK,CAAC;IACpC,cAAc,EAAE,MAAM,CAAC;CACxB;AAED,qBAAa,cAAe,SAAQ,SAAS,CAC3C,mBAAmB,EACnB,mBAAmB,CACpB;IACC,OAAO,CAAC,gBAAgB,CAAiC;IACzD,OAAO,CAAC,gBAAgB,CAAyC;IACjE,OAAO,CAAC,cAAc,CAAyC;IAC/D,OAAO,CAAC,cAAc,CAAyC;IAC/D,OAAO,CAAC,cAAc,CAAyB;IAC/C,OAAO,CAAC,cAAc,CAA8C;IACpE,OAAO,CAAC,UAAU,CAAS;IAC3B,OAAO,CAAC,cAAc,CAAS;IAC/B,OAAO,CAAC,oBAAoB,CAAS;IACrC,OAAO,CAAC,eAAe,CAAK;IAC5B,OAAO,CAAC,gBAAgB,CAAK;IAC7B,OAAO,CAAC,eAAe,CAAK;IAC5B,OAAO,CAAC,UAAU,CAA2C;gBAEjD,KAAK,EAAE,mBAAmB;IAyGtC,iBAAiB,IAAI,IAAI;IAKzB,kBAAkB,CAAC,SAAS,EAAE,mBAAmB,GAAG,IAAI;IAUxD,oBAAoB,IAAI,IAAI;IAS5B,OAAO,CAAC,eAAe;IAQvB,OAAO,CAAC,mBAAmB;IAM3B,OAAO,CAAC,uBAAuB;IAK/B,OAAO,CAAC,WAAW,CAGjB;IAEF,OAAO,CAAC,SAAS,CAYf;IAEF,OAAO,CAAC,UAAU,CAWhB;IAEF,OAAO,CAAC,oBAAoB;IAS5B,OAAO,CAAC,SAAS,CAyCf;IAEF,OAAO,CAAC,gBAAgB;IAYxB,OAAO,CAAC,qBAAqB;IAI7B,OAAO,CAAC,yBAAyB;IAIjC,OAAO,CAAC,kBAAkB;IAQ1B,OAAO,CAAC,mBAAmB;IAoB3B,OAAO,CAAC,wBAAwB;IAiBhC,OAAO,CAAC,eAAe,CAMrB;IAEF,OAAO,CAAC,OAAO;IAIf,OAAO,CAAC,oBAAoB;IA0B5B,MAAM;CAoJP"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import type { DebugFeatureRenderProps, NavigationLogEntry } from '../types';
3
+ export declare const NavigationLogTab: React.FC<DebugFeatureRenderProps<NavigationLogEntry>>;
4
+ //# sourceMappingURL=NavigationLogTab.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NavigationLogTab.d.ts","sourceRoot":"","sources":["../../../../src/components/NavigationLogTab.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,KAAK,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAE5E,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,uBAAuB,CAAC,kBAAkB,CAAC,CA6CjF,CAAC"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import type { DebugFeatureRenderProps, NetworkLogEntry } from '../types';
3
+ export declare const NetworkLogTab: React.FC<DebugFeatureRenderProps<NetworkLogEntry>>;
4
+ //# sourceMappingURL=NetworkLogTab.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NetworkLogTab.d.ts","sourceRoot":"","sources":["../../../../src/components/NetworkLogTab.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAgB3D,OAAO,KAAK,EAAE,uBAAuB,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAiIzE,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,uBAAuB,CAAC,eAAe,CAAC,CAsH3E,CAAC"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import type { DebugFeatureRenderProps, ThirdPartyLib } from '../types';
3
+ export declare const ThirdPartyLibsTab: React.FC<DebugFeatureRenderProps<ThirdPartyLib>>;
4
+ //# sourceMappingURL=ThirdPartyLibsTab.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ThirdPartyLibsTab.d.ts","sourceRoot":"","sources":["../../../../src/components/ThirdPartyLibsTab.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,EAAE,uBAAuB,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEvE,eAAO,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC,uBAAuB,CAAC,aAAa,CAAC,CAgC9E,CAAC"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import type { DebugFeatureRenderProps, TrackLogEntry } from '../types';
3
+ export declare const TrackLogTab: React.FC<DebugFeatureRenderProps<TrackLogEntry>>;
4
+ //# sourceMappingURL=TrackLogTab.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TrackLogTab.d.ts","sourceRoot":"","sources":["../../../../src/components/TrackLogTab.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAQxC,OAAO,KAAK,EAAE,uBAAuB,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEvE,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,uBAAuB,CAAC,aAAa,CAAC,CAmHvE,CAAC"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import type { DebugFeatureRenderProps, ZustandLogEntry } from '../types';
3
+ export declare const ZustandLogTab: React.FC<DebugFeatureRenderProps<ZustandLogEntry>>;
4
+ //# sourceMappingURL=ZustandLogTab.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ZustandLogTab.d.ts","sourceRoot":"","sources":["../../../../src/components/ZustandLogTab.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAQxC,OAAO,KAAK,EAAE,uBAAuB,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAgBzE,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,uBAAuB,CAAC,eAAe,CAAC,CAkJ3E,CAAC"}
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ interface Props {
3
+ title: string;
4
+ initiallyExpanded?: boolean;
5
+ children: React.ReactNode;
6
+ }
7
+ export declare const CollapsibleSection: React.FC<Props>;
8
+ export {};
9
+ //# sourceMappingURL=CollapsibleSection.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CollapsibleSection.d.ts","sourceRoot":"","sources":["../../../../../src/components/shared/CollapsibleSection.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAInD,UAAU,KAAK;IACb,KAAK,EAAE,MAAM,CAAC;IACd,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAED,eAAO,MAAM,kBAAkB,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAmC9C,CAAC"}
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ interface CopyButtonProps {
3
+ /** Content to copy */
4
+ text: string;
5
+ /** Label for console.log identification */
6
+ label?: string;
7
+ /** Compact mode for inline use */
8
+ compact?: boolean;
9
+ }
10
+ export declare const CopyButton: React.FC<CopyButtonProps>;
11
+ export {};
12
+ //# sourceMappingURL=CopyButton.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CopyButton.d.ts","sourceRoot":"","sources":["../../../../../src/components/shared/CopyButton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAgC,MAAM,OAAO,CAAC;AAKrD,UAAU,eAAe;IACvB,sBAAsB;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,2CAA2C;IAC3C,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,kCAAkC;IAClC,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CA+BhD,CAAC"}
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export declare const JsonView: React.FC<{
3
+ data: unknown;
4
+ maxHeight?: number;
5
+ }>;
6
+ //# sourceMappingURL=JsonView.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"JsonView.d.ts","sourceRoot":"","sources":["../../../../../src/components/shared/JsonView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAO1B,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC;IAAE,IAAI,EAAE,OAAO,CAAC;IAAC,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAgBnE,CAAC"}
@@ -0,0 +1,27 @@
1
+ import type { DebugFeature } from '../types';
2
+ export declare class DebugToolkit {
3
+ private static instance;
4
+ private _features;
5
+ private _enabled;
6
+ private _panelVisible;
7
+ private renderCallback;
8
+ private constructor();
9
+ static getInstance(enabled?: boolean): DebugToolkit;
10
+ get features(): DebugFeature[];
11
+ get enabled(): boolean;
12
+ get panelVisible(): boolean;
13
+ registerRenderCallback(cb: () => void): void;
14
+ unregisterRenderCallback(): void;
15
+ setEnabled(enabled: boolean): void;
16
+ private updatePanel;
17
+ addFeature(feature: DebugFeature): void;
18
+ removeFeature(name: string): void;
19
+ replaceFeatures(features: DebugFeature[]): void;
20
+ reset(): void;
21
+ hasFeatures(): boolean;
22
+ showPanel(): void;
23
+ hidePanel(): void;
24
+ clearAll(): void;
25
+ destroy(): void;
26
+ }
27
+ //# sourceMappingURL=DebugToolkit.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DebugToolkit.d.ts","sourceRoot":"","sources":["../../../../src/core/DebugToolkit.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAE7C,qBAAa,YAAY;IACvB,OAAO,CAAC,MAAM,CAAC,QAAQ,CAA6B;IACpD,OAAO,CAAC,SAAS,CAAsB;IACvC,OAAO,CAAC,QAAQ,CAAU;IAC1B,OAAO,CAAC,aAAa,CAAkB;IACvC,OAAO,CAAC,cAAc,CAA6B;IAEnD,OAAO;IAIP,MAAM,CAAC,WAAW,CAAC,OAAO,UAAO,GAAG,YAAY;IAShD,IAAI,QAAQ,IAAI,YAAY,EAAE,CAE7B;IAED,IAAI,OAAO,IAAI,OAAO,CAErB;IAED,IAAI,YAAY,IAAI,OAAO,CAE1B;IAED,sBAAsB,CAAC,EAAE,EAAE,MAAM,IAAI,GAAG,IAAI;IAU5C,wBAAwB,IAAI,IAAI;IAIhC,UAAU,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI;IAclC,OAAO,CAAC,WAAW;IAInB,UAAU,CAAC,OAAO,EAAE,YAAY,GAAG,IAAI;IA0BvC,aAAa,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;IASjC,eAAe,CAAC,QAAQ,EAAE,YAAY,EAAE,GAAG,IAAI;IAgC/C,KAAK,IAAI,IAAI;IAMb,WAAW,IAAI,OAAO;IAItB,SAAS,IAAI,IAAI;IAQjB,SAAS,IAAI,IAAI;IAKjB,QAAQ,IAAI,IAAI;IAYhB,OAAO,IAAI,IAAI;CAKhB"}
@@ -0,0 +1,18 @@
1
+ import React, { type ReactNode } from 'react';
2
+ import type { DebugFeature } from '../types';
3
+ interface ToolkitContextValue {
4
+ features: DebugFeature[];
5
+ showPanel: () => void;
6
+ hidePanel: () => void;
7
+ addFeature: (feature: DebugFeature) => void;
8
+ removeFeature: (name: string) => void;
9
+ clearAll: () => void;
10
+ destroy: () => void;
11
+ }
12
+ interface DebugToolkitProviderProps {
13
+ children: ReactNode;
14
+ }
15
+ export declare function DebugToolkitProvider({ children }: DebugToolkitProviderProps): React.JSX.Element;
16
+ export declare function useDebugToolkit(): ToolkitContextValue;
17
+ export {};
18
+ //# sourceMappingURL=DebugToolkitProvider.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DebugToolkitProvider.d.ts","sourceRoot":"","sources":["../../../../src/core/DebugToolkitProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAkD,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAG9F,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAE7C,UAAU,mBAAmB;IAC3B,QAAQ,EAAE,YAAY,EAAE,CAAC;IACzB,SAAS,EAAE,MAAM,IAAI,CAAC;IACtB,SAAS,EAAE,MAAM,IAAI,CAAC;IACtB,UAAU,EAAE,CAAC,OAAO,EAAE,YAAY,KAAK,IAAI,CAAC;IAC5C,aAAa,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IACtC,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AASD,UAAU,yBAAyB;IACjC,QAAQ,EAAE,SAAS,CAAC;CACrB;AAED,wBAAgB,oBAAoB,CAAC,EAAE,QAAQ,EAAE,EAAE,yBAAyB,qBAmD3E;AAED,wBAAgB,eAAe,IAAI,mBAAmB,CASrD"}
@@ -0,0 +1,3 @@
1
+ import type { DebugFeature } from '../types';
2
+ export declare const createClipboardFeature: () => DebugFeature<void>;
3
+ //# sourceMappingURL=ClipboardFeature.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ClipboardFeature.d.ts","sourceRoot":"","sources":["../../../../src/features/ClipboardFeature.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAE7C,eAAO,MAAM,sBAAsB,QAAO,YAAY,CAAC,IAAI,CAOzD,CAAC"}
@@ -0,0 +1,7 @@
1
+ import type { ConsoleLogEntry, DebugFeature } from '../types';
2
+ export interface ConsoleFeatureConfig {
3
+ /** Maximum number of console logs to keep (default: 200) */
4
+ maxLogs?: number;
5
+ }
6
+ export declare const createConsoleLogFeature: (config?: ConsoleFeatureConfig) => DebugFeature<ConsoleLogEntry>;
7
+ //# sourceMappingURL=ConsoleLogFeature.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ConsoleLogFeature.d.ts","sourceRoot":"","sources":["../../../../src/features/ConsoleLogFeature.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAgE9D,MAAM,WAAW,oBAAoB;IACnC,4DAA4D;IAC5D,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,eAAO,MAAM,uBAAuB,GAAI,SAAS,oBAAoB,KAAG,YAAY,CAAC,eAAe,CA+CnG,CAAC"}
@@ -0,0 +1,8 @@
1
+ import type { DebugFeature, EnvironmentConfig, EnvironmentState } from '../types';
2
+ export interface EnvironmentFeatureAPI extends DebugFeature<EnvironmentState> {
3
+ registerEnvironments: (environments: EnvironmentConfig[]) => void;
4
+ switchEnvironment: (environmentId: string | null) => void;
5
+ getCurrentEnvironmentId: () => string | null;
6
+ }
7
+ export declare const createEnvironmentFeature: (initialEnvironments?: EnvironmentConfig[]) => EnvironmentFeatureAPI;
8
+ //# sourceMappingURL=EnvironmentFeature.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EnvironmentFeature.d.ts","sourceRoot":"","sources":["../../../../src/features/EnvironmentFeature.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAoElF,MAAM,WAAW,qBAAsB,SAAQ,YAAY,CAAC,gBAAgB,CAAC;IAC3E,oBAAoB,EAAE,CAAC,YAAY,EAAE,iBAAiB,EAAE,KAAK,IAAI,CAAC;IAClE,iBAAiB,EAAE,CAAC,aAAa,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI,CAAC;IAC1D,uBAAuB,EAAE,MAAM,MAAM,GAAG,IAAI,CAAC;CAC9C;AAED,eAAO,MAAM,wBAAwB,GACnC,sBAAsB,iBAAiB,EAAE,KACxC,qBAoHF,CAAC"}
@@ -0,0 +1,8 @@
1
+ import type { DebugFeature, NavigationLogEntry } from '../types';
2
+ export declare const addNavigationLog: (action: string, from: string, to: string, startTime?: number, duration?: number, debugLog?: string) => void;
3
+ export interface NavigationFeatureConfig {
4
+ /** Maximum number of navigation logs to keep (default: 200) */
5
+ maxLogs?: number;
6
+ }
7
+ export declare const createNavigationLogFeature: (config?: NavigationFeatureConfig) => DebugFeature<NavigationLogEntry>;
8
+ //# sourceMappingURL=NavigationLogFeature.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NavigationLogFeature.d.ts","sourceRoot":"","sources":["../../../../src/features/NavigationLogFeature.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AASjE,eAAO,MAAM,gBAAgB,GAC3B,QAAQ,MAAM,EACd,MAAM,MAAM,EACZ,IAAI,MAAM,EACV,YAAY,MAAM,EAClB,WAAW,MAAM,EACjB,WAAW,MAAM,KAChB,IAUF,CAAC;AAEF,MAAM,WAAW,uBAAuB;IACtC,+DAA+D;IAC/D,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,eAAO,MAAM,0BAA0B,GAAI,SAAS,uBAAuB,KAAG,YAAY,CAAC,kBAAkB,CAuC5G,CAAC"}
@@ -0,0 +1,28 @@
1
+ import type { DebugFeature, NetworkLogEntry } from '../types';
2
+ interface AxiosInterceptorManager {
3
+ use: (onFulfilled: unknown, onRejected?: unknown) => number | void;
4
+ eject?: (id: number) => void;
5
+ }
6
+ interface AxiosInstanceLike {
7
+ interceptors: {
8
+ request: AxiosInterceptorManager;
9
+ response: AxiosInterceptorManager;
10
+ };
11
+ }
12
+ export declare function setUrlRewriter(rewriter: ((url: string) => string) | null): void;
13
+ export interface NetworkFeatureAPI extends DebugFeature<NetworkLogEntry> {
14
+ setupAxiosInterceptors: (axiosInstance: AxiosInstanceLike) => () => void;
15
+ addUrlToBlacklist: (pattern: string | RegExp) => void;
16
+ removeUrlFromBlacklist: (pattern: string | RegExp) => void;
17
+ clearBlacklist: () => void;
18
+ getBlacklist: () => Array<string | RegExp>;
19
+ }
20
+ export interface NetworkFeatureConfig {
21
+ /** Maximum number of network logs to keep (default: 200) */
22
+ maxLogs?: number;
23
+ /** URLs to filter out from logging */
24
+ blacklist?: Array<string | RegExp>;
25
+ }
26
+ export declare const createNetworkFeature: (config?: NetworkFeatureConfig) => NetworkFeatureAPI;
27
+ export {};
28
+ //# sourceMappingURL=NetworkFeature.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NetworkFeature.d.ts","sourceRoot":"","sources":["../../../../src/features/NetworkFeature.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAM9D,UAAU,uBAAuB;IAC/B,GAAG,EAAE,CAAC,WAAW,EAAE,OAAO,EAAE,UAAU,CAAC,EAAE,OAAO,KAAK,MAAM,GAAG,IAAI,CAAC;IACnE,KAAK,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;CAC9B;AAwBD,UAAU,iBAAiB;IACzB,YAAY,EAAE;QACZ,OAAO,EAAE,uBAAuB,CAAC;QACjC,QAAQ,EAAE,uBAAuB,CAAC;KACnC,CAAC;CACH;AAiBD,wBAAgB,cAAc,CAAC,QAAQ,EAAE,CAAC,CAAC,GAAG,EAAE,MAAM,KAAK,MAAM,CAAC,GAAG,IAAI,GAAG,IAAI,CAE/E;AAsTD,MAAM,WAAW,iBAAkB,SAAQ,YAAY,CAAC,eAAe,CAAC;IACtE,sBAAsB,EAAE,CAAC,aAAa,EAAE,iBAAiB,KAAK,MAAM,IAAI,CAAC;IACzE,iBAAiB,EAAE,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,KAAK,IAAI,CAAC;IACtD,sBAAsB,EAAE,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,KAAK,IAAI,CAAC;IAC3D,cAAc,EAAE,MAAM,IAAI,CAAC;IAC3B,YAAY,EAAE,MAAM,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC;CAC5C;AAED,MAAM,WAAW,oBAAoB;IACnC,4DAA4D;IAC5D,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,sCAAsC;IACtC,SAAS,CAAC,EAAE,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC;CACpC;AAED,eAAO,MAAM,oBAAoB,GAAI,SAAS,oBAAoB,KAAG,iBAwGpE,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { DebugFeature, ThirdPartyLib } from '../types';
2
+ export declare const createThirdPartyLibsFeature: () => DebugFeature<ThirdPartyLib>;
3
+ //# sourceMappingURL=ThirdPartyLibsFeature.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ThirdPartyLibsFeature.d.ts","sourceRoot":"","sources":["../../../../src/features/ThirdPartyLibsFeature.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AA+B5D,eAAO,MAAM,2BAA2B,QAAO,YAAY,CAAC,aAAa,CAOvE,CAAC"}
@@ -0,0 +1,12 @@
1
+ import type { DebugFeature, TrackLogEntry } from '../types';
2
+ export interface TrackEventData {
3
+ eventName: string;
4
+ [key: string]: unknown;
5
+ }
6
+ export declare const addTrackLog: (eventData: TrackEventData) => void;
7
+ export interface TrackFeatureConfig {
8
+ /** Maximum number of track events to keep (default: 200) */
9
+ maxLogs?: number;
10
+ }
11
+ export declare const createTrackFeature: (config?: TrackFeatureConfig) => DebugFeature<TrackLogEntry>;
12
+ //# sourceMappingURL=TrackFeature.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TrackFeature.d.ts","sourceRoot":"","sources":["../../../../src/features/TrackFeature.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAI5D,MAAM,WAAW,cAAc;IAC7B,SAAS,EAAE,MAAM,CAAC;IAClB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AASD,eAAO,MAAM,WAAW,GAAI,WAAW,cAAc,KAAG,IAKvD,CAAC;AAEF,MAAM,WAAW,kBAAkB;IACjC,4DAA4D;IAC5D,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,eAAO,MAAM,kBAAkB,GAAI,SAAS,kBAAkB,KAAG,YAAY,CAAC,aAAa,CAuC1F,CAAC"}
@@ -0,0 +1,29 @@
1
+ import type { DebugFeature, ZustandLogEntry } from '../types';
2
+ export declare const addZustandLog: (action: string, prevState: unknown, nextState: unknown, actionCompleteTime?: number, storeName?: string) => void;
3
+ type ZustandSetState<T> = (partial: T | Partial<T> | ((state: T) => Partial<T> | T), replace?: boolean | undefined, action?: string | {
4
+ type: unknown;
5
+ } | undefined) => void;
6
+ type ZustandGetState<T> = () => T;
7
+ interface ZustandStoreApi<T> {
8
+ getState: () => T;
9
+ setState: ZustandSetState<T>;
10
+ subscribe: (listener: (state: T, prevState: T) => void) => () => void;
11
+ name?: string;
12
+ }
13
+ type ZustandConfig<T> = (set: ZustandSetState<T>, get: ZustandGetState<T>, api: ZustandStoreApi<T>) => T;
14
+ /**
15
+ * Zustand middleware that logs all state changes to the debug toolkit.
16
+ *
17
+ * Usage:
18
+ * ```ts
19
+ * const useStore = create(zustandLogMiddleware((set) => ({ ... })))
20
+ * ```
21
+ */
22
+ export declare const zustandLogMiddleware: <T>(config: ZustandConfig<T>) => (set: ZustandSetState<T>, get: ZustandGetState<T>, api: ZustandStoreApi<T>) => T;
23
+ export interface ZustandFeatureConfig {
24
+ /** Maximum number of zustand state changes to keep (default: 200) */
25
+ maxLogs?: number;
26
+ }
27
+ export declare const createZustandLogFeature: (config?: ZustandFeatureConfig) => DebugFeature<ZustandLogEntry>;
28
+ export {};
29
+ //# sourceMappingURL=ZustandLogFeature.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ZustandLogFeature.d.ts","sourceRoot":"","sources":["../../../../src/features/ZustandLogFeature.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAS9D,eAAO,MAAM,aAAa,GACxB,QAAQ,MAAM,EACd,WAAW,OAAO,EAClB,WAAW,OAAO,EAClB,qBAAqB,MAAM,EAC3B,YAAY,MAAM,KACjB,IASF,CAAC;AAEF,KAAK,eAAe,CAAC,CAAC,IAAI,CACxB,OAAO,EAAE,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,CAAC,KAAK,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EACxD,OAAO,CAAC,EAAE,OAAO,GAAG,SAAS,EAC7B,MAAM,CAAC,EAAE,MAAM,GAAG;IAAE,IAAI,EAAE,OAAO,CAAA;CAAE,GAAG,SAAS,KAC5C,IAAI,CAAC;AAEV,KAAK,eAAe,CAAC,CAAC,IAAI,MAAM,CAAC,CAAC;AAElC,UAAU,eAAe,CAAC,CAAC;IACzB,QAAQ,EAAE,MAAM,CAAC,CAAC;IAClB,QAAQ,EAAE,eAAe,CAAC,CAAC,CAAC,CAAC;IAC7B,SAAS,EAAE,CAAC,QAAQ,EAAE,CAAC,KAAK,EAAE,CAAC,EAAE,SAAS,EAAE,CAAC,KAAK,IAAI,KAAK,MAAM,IAAI,CAAC;IACtE,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,KAAK,aAAa,CAAC,CAAC,IAAI,CACtB,GAAG,EAAE,eAAe,CAAC,CAAC,CAAC,EACvB,GAAG,EAAE,eAAe,CAAC,CAAC,CAAC,EACvB,GAAG,EAAE,eAAe,CAAC,CAAC,CAAC,KACpB,CAAC,CAAC;AAEP;;;;;;;GAOG;AACH,eAAO,MAAM,oBAAoB,GAAI,CAAC,EAAE,QAAQ,aAAa,CAAC,CAAC,CAAC,MAC9D,KAAK,eAAe,CAAC,CAAC,CAAC,EACvB,KAAK,eAAe,CAAC,CAAC,CAAC,EACvB,KAAK,eAAe,CAAC,CAAC,CAAC,MAqBtB,CAAC;AAEJ,MAAM,WAAW,oBAAoB;IACnC,qEAAqE;IACrE,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,eAAO,MAAM,uBAAuB,GAAI,SAAS,oBAAoB,KAAG,YAAY,CAAC,eAAe,CAuCnG,CAAC"}
@@ -0,0 +1,20 @@
1
+ interface NavigationContainerRef {
2
+ getCurrentRoute?: () => {
3
+ name?: string;
4
+ } | undefined;
5
+ getRootState?: () => unknown;
6
+ addListener: (event: string, callback: () => void) => () => void;
7
+ }
8
+ /**
9
+ * Hook to automatically log React Navigation events.
10
+ *
11
+ * Usage:
12
+ * ```tsx
13
+ * const navigationRef = useRef<NavigationContainerRef>(null);
14
+ * useNavigationLogger(navigationRef);
15
+ * return <NavigationContainer ref={navigationRef}>...</NavigationContainer>;
16
+ * ```
17
+ */
18
+ export declare function useNavigationLogger(navigationRef: React.RefObject<NavigationContainerRef | null>): void;
19
+ export {};
20
+ //# sourceMappingURL=useNavigationLogger.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useNavigationLogger.d.ts","sourceRoot":"","sources":["../../../../src/hooks/useNavigationLogger.ts"],"names":[],"mappings":"AAIA,UAAU,sBAAsB;IAC9B,eAAe,CAAC,EAAE,MAAM;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,SAAS,CAAC;IACtD,YAAY,CAAC,EAAE,MAAM,OAAO,CAAC;IAC7B,WAAW,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,IAAI,KAAK,MAAM,IAAI,CAAC;CAClE;AAyBD;;;;;;;;;GASG;AACH,wBAAgB,mBAAmB,CAAC,aAAa,EAAE,KAAK,CAAC,SAAS,CAAC,sBAAsB,GAAG,IAAI,CAAC,QA+DhG"}
@@ -0,0 +1,11 @@
1
+ import { Animated } from 'react-native';
2
+ /**
3
+ * Shared slide-in/out animation for tab detail views.
4
+ * Returns animated styles for the detail overlay and the list behind it.
5
+ */
6
+ export declare function useSlideDetailAnimation<T>(selected: T | null): {
7
+ detailTranslateX: Animated.AnimatedInterpolation<number>;
8
+ listTranslateX: Animated.AnimatedInterpolation<number>;
9
+ listOpacity: Animated.AnimatedInterpolation<number>;
10
+ };
11
+ //# sourceMappingURL=useSlideDetailAnimation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useSlideDetailAnimation.d.ts","sourceRoot":"","sources":["../../../../src/hooks/useSlideDetailAnimation.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC;;;GAGG;AACH,wBAAgB,uBAAuB,CAAC,CAAC,EACvC,QAAQ,EAAE,CAAC,GAAG,IAAI,GACjB;IACD,gBAAgB,EAAE,QAAQ,CAAC,qBAAqB,CAAC,MAAM,CAAC,CAAC;IACzD,cAAc,EAAE,QAAQ,CAAC,qBAAqB,CAAC,MAAM,CAAC,CAAC;IACvD,WAAW,EAAE,QAAQ,CAAC,qBAAqB,CAAC,MAAM,CAAC,CAAC;CACrD,CA+BA"}
@@ -0,0 +1,26 @@
1
+ export { DebugToolkit } from './core/DebugToolkit';
2
+ export { DebugToolkitProvider, useDebugToolkit } from './core/DebugToolkitProvider';
3
+ export { initializeDebugToolkit, isDebugMode } from './initialize';
4
+ export type { InitializeOptions, FeatureConfigs } from './initialize';
5
+ export { createNetworkFeature } from './features/NetworkFeature';
6
+ export type { NetworkFeatureAPI, NetworkFeatureConfig } from './features/NetworkFeature';
7
+ export { createConsoleLogFeature } from './features/ConsoleLogFeature';
8
+ export type { ConsoleFeatureConfig } from './features/ConsoleLogFeature';
9
+ export { createZustandLogFeature, zustandLogMiddleware, addZustandLog } from './features/ZustandLogFeature';
10
+ export type { ZustandFeatureConfig } from './features/ZustandLogFeature';
11
+ export { createNavigationLogFeature, addNavigationLog } from './features/NavigationLogFeature';
12
+ export type { NavigationFeatureConfig } from './features/NavigationLogFeature';
13
+ export { createTrackFeature, addTrackLog } from './features/TrackFeature';
14
+ export type { TrackFeatureConfig, TrackEventData } from './features/TrackFeature';
15
+ export { createThirdPartyLibsFeature } from './features/ThirdPartyLibsFeature';
16
+ export { createEnvironmentFeature } from './features/EnvironmentFeature';
17
+ export type { EnvironmentFeatureAPI } from './features/EnvironmentFeature';
18
+ export { createClipboardFeature } from './features/ClipboardFeature';
19
+ export { useNavigationLogger } from './hooks/useNavigationLogger';
20
+ export { useSlideDetailAnimation } from './hooks/useSlideDetailAnimation';
21
+ export { safeStringify } from './utils/safeStringify';
22
+ export { copyToComputer, logToComputer, fmt } from './utils/copyToComputer';
23
+ export type { CopyResult, CopyOptions, CopyMethod } from './utils/copyToComputer';
24
+ export type { BuiltInFeatureName, DebugFeature, DebugFeatureFactory, DebugFeatureInput, DebugFeatureRenderProps, DebugToolkitConfig, DebugToolkitAPI, NetworkLogEntry, ConsoleLogEntry, ZustandLogEntry, NavigationLogEntry, TrackLogEntry, ThirdPartyLib, EnvironmentConfig, EnvironmentState, } from './types';
25
+ export { initializeDebugToolkit as default } from './initialize';
26
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,EAAE,oBAAoB,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AACpF,OAAO,EAAE,sBAAsB,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AACnE,YAAY,EAAE,iBAAiB,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAGtE,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AACjE,YAAY,EAAE,iBAAiB,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AACzF,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AACvE,YAAY,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,uBAAuB,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AAC5G,YAAY,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,0BAA0B,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAC;AAC/F,YAAY,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,kBAAkB,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC1E,YAAY,EAAE,kBAAkB,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAClF,OAAO,EAAE,2BAA2B,EAAE,MAAM,kCAAkC,CAAC;AAC/E,OAAO,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAC;AACzE,YAAY,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAGrE,OAAO,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAC;AAClE,OAAO,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAC;AAG1E,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,aAAa,EAAE,GAAG,EAAE,MAAM,wBAAwB,CAAC;AAC5E,YAAY,EAAE,UAAU,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAGlF,YAAY,EACV,kBAAkB,EAClB,YAAY,EACZ,mBAAmB,EACnB,iBAAiB,EACjB,uBAAuB,EACvB,kBAAkB,EAClB,eAAe,EACf,eAAe,EACf,eAAe,EACf,eAAe,EACf,kBAAkB,EAClB,aAAa,EACb,aAAa,EACb,iBAAiB,EACjB,gBAAgB,GACjB,MAAM,SAAS,CAAC;AAGjB,OAAO,EAAE,sBAAsB,IAAI,OAAO,EAAE,MAAM,cAAc,CAAC"}
@@ -0,0 +1,51 @@
1
+ import { DebugToolkit } from './core/DebugToolkit';
2
+ import type { NetworkFeatureConfig } from './features/NetworkFeature';
3
+ import type { ConsoleFeatureConfig } from './features/ConsoleLogFeature';
4
+ import type { ZustandFeatureConfig } from './features/ZustandLogFeature';
5
+ import type { NavigationFeatureConfig } from './features/NavigationLogFeature';
6
+ import type { TrackFeatureConfig } from './features/TrackFeature';
7
+ import { createEnvironmentFeature } from './features/EnvironmentFeature';
8
+ import type { DebugFeatureInput } from './types';
9
+ export declare const isDebugMode: boolean;
10
+ /** Feature-specific configuration map */
11
+ export interface FeatureConfigs {
12
+ network?: boolean | NetworkFeatureConfig;
13
+ console?: boolean | ConsoleFeatureConfig;
14
+ zustand?: boolean | ZustandFeatureConfig;
15
+ navigation?: boolean | NavigationFeatureConfig;
16
+ track?: boolean | TrackFeatureConfig;
17
+ thirdPartyLibs?: boolean;
18
+ environment?: Parameters<typeof createEnvironmentFeature>[0];
19
+ clipboard?: boolean;
20
+ }
21
+ export interface InitializeOptions {
22
+ doraemonProductId?: string;
23
+ enabled?: boolean;
24
+ }
25
+ /**
26
+ * Initialize the debug toolkit.
27
+ *
28
+ * @param featuresOrOptions - Either an array of feature inputs (legacy), or a full config object.
29
+ * @param options - Options when using legacy array mode.
30
+ *
31
+ * @example
32
+ * // Legacy mode (still supported)
33
+ * initializeDebugToolkit(['network', 'console'], { enabled: true });
34
+ *
35
+ * // Config object mode (recommended)
36
+ * initializeDebugToolkit({
37
+ * features: {
38
+ * network: { maxLogs: 100 },
39
+ * console: true,
40
+ * track: true,
41
+ * environment: { environments: [...] },
42
+ * },
43
+ * enabled: true,
44
+ * });
45
+ */
46
+ export declare function initializeDebugToolkit(featuresOrOptions?: DebugFeatureInput[] | {
47
+ features?: FeatureConfigs;
48
+ enabled?: boolean;
49
+ doraemonProductId?: string;
50
+ }, options?: InitializeOptions): DebugToolkit | null;
51
+ //# sourceMappingURL=initialize.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"initialize.d.ts","sourceRoot":"","sources":["../../../src/initialize.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAEnD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AAEtE,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAC;AAEzE,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAC;AAEzE,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAC;AAE/E,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAElE,OAAO,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAC;AAGzE,OAAO,KAAK,EAGV,iBAAiB,EAClB,MAAM,SAAS,CAAC;AAEjB,eAAO,MAAM,WAAW,SAAU,CAAC;AAEnC,yCAAyC;AACzC,MAAM,WAAW,cAAc;IAC7B,OAAO,CAAC,EAAE,OAAO,GAAG,oBAAoB,CAAC;IACzC,OAAO,CAAC,EAAE,OAAO,GAAG,oBAAoB,CAAC;IACzC,OAAO,CAAC,EAAE,OAAO,GAAG,oBAAoB,CAAC;IACzC,UAAU,CAAC,EAAE,OAAO,GAAG,uBAAuB,CAAC;IAC/C,KAAK,CAAC,EAAE,OAAO,GAAG,kBAAkB,CAAC;IACrC,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,WAAW,CAAC,EAAE,UAAU,CAAC,OAAO,wBAAwB,CAAC,CAAC,CAAC,CAAC,CAAC;IAC7D,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED,MAAM,WAAW,iBAAiB;IAChC,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAyFD;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,wBAAgB,sBAAsB,CACpC,iBAAiB,CAAC,EAAE,iBAAiB,EAAE,GAAG;IACxC,QAAQ,CAAC,EAAE,cAAc,CAAC;IAC1B,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC5B,EACD,OAAO,GAAE,iBAAsB,GAC9B,YAAY,GAAG,IAAI,CA0DrB"}
@@ -0,0 +1,11 @@
1
+ export declare const NativeDebugLibs: {
2
+ getBuildType(): Promise<string | null>;
3
+ getBuildTypeSync(): string | null;
4
+ isDebugBuild(): boolean;
5
+ showExplorer(): void;
6
+ hideExplorer(): void;
7
+ installDoraemonKit(productId: string): void;
8
+ showDoraemonKit(): void;
9
+ hideDoraemonKit(): void;
10
+ };
11
+ //# sourceMappingURL=NativeDebugLibs.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NativeDebugLibs.d.ts","sourceRoot":"","sources":["../../../../src/native/NativeDebugLibs.ts"],"names":[],"mappings":"AAmBA,eAAO,MAAM,eAAe;oBACV,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;wBAOlB,MAAM,GAAG,IAAI;oBAOjB,OAAO;oBASP,IAAI;oBAMJ,IAAI;kCAOU,MAAM,GAAG,IAAI;uBAMxB,IAAI;uBAMJ,IAAI;CAKxB,CAAC"}