@osdk/react-devtools 0.5.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 (443) hide show
  1. package/CHANGELOG.md +79 -0
  2. package/build/esm/DevToolsContext.js +19 -0
  3. package/build/esm/DevToolsContext.js.map +1 -0
  4. package/build/esm/components/ActionMetrics.js +89 -0
  5. package/build/esm/components/ActionMetrics.js.map +1 -0
  6. package/build/esm/components/BubbleChart.js +175 -0
  7. package/build/esm/components/BubbleChart.js.map +1 -0
  8. package/build/esm/components/BubbleChart.module.scss.js +6 -0
  9. package/build/esm/components/CacheInspectorTab.js +291 -0
  10. package/build/esm/components/CacheInspectorTab.js.map +1 -0
  11. package/build/esm/components/CacheInspectorTab.module.scss.js +39 -0
  12. package/build/esm/components/CacheMetrics.js +55 -0
  13. package/build/esm/components/CacheMetrics.js.map +1 -0
  14. package/build/esm/components/ComponentCard.js +124 -0
  15. package/build/esm/components/ComponentCard.js.map +1 -0
  16. package/build/esm/components/ComponentCard.module.scss.js +31 -0
  17. package/build/esm/components/ComputeTab.js +175 -0
  18. package/build/esm/components/ComputeTab.js.map +1 -0
  19. package/build/esm/components/CopyableCodeBlock.js +49 -0
  20. package/build/esm/components/CopyableCodeBlock.js.map +1 -0
  21. package/build/esm/components/CopyableCodeBlock.module.scss.js +10 -0
  22. package/build/esm/components/DebuggingTab.js +342 -0
  23. package/build/esm/components/DebuggingTab.js.map +1 -0
  24. package/build/esm/components/DebuggingTab.module.scss.js +18 -0
  25. package/build/esm/components/HookRow.js +180 -0
  26. package/build/esm/components/HookRow.js.map +1 -0
  27. package/build/esm/components/HookRow.module.scss.js +16 -0
  28. package/build/esm/components/ImprovementsTab.js +138 -0
  29. package/build/esm/components/ImprovementsTab.js.map +1 -0
  30. package/build/esm/components/ImprovementsTab.module.scss.js +30 -0
  31. package/build/esm/components/InspectorSelectionHeader.js +65 -0
  32. package/build/esm/components/InspectorSelectionHeader.js.map +1 -0
  33. package/build/esm/components/InterceptTab.js +862 -0
  34. package/build/esm/components/InterceptTab.js.map +1 -0
  35. package/build/esm/components/InterceptTab.module.scss.js +49 -0
  36. package/build/esm/components/IssueCard.js +115 -0
  37. package/build/esm/components/IssueCard.js.map +1 -0
  38. package/build/esm/components/IssueCard.module.scss.js +24 -0
  39. package/build/esm/components/LogEntryCard.js +94 -0
  40. package/build/esm/components/LogEntryCard.js.map +1 -0
  41. package/build/esm/components/LogEntryCard.module.scss.js +19 -0
  42. package/build/esm/components/MockEditor.js +316 -0
  43. package/build/esm/components/MockEditor.js.map +1 -0
  44. package/build/esm/components/MonitorErrorBoundary.js +64 -0
  45. package/build/esm/components/MonitorErrorBoundary.js.map +1 -0
  46. package/build/esm/components/MonitorErrorBoundary.module.scss.js +9 -0
  47. package/build/esm/components/MonitoringPanel.js +434 -0
  48. package/build/esm/components/MonitoringPanel.js.map +1 -0
  49. package/build/esm/components/MonitoringPanel.module.scss.js +81 -0
  50. package/build/esm/components/ObjectLoadingMetrics.js +60 -0
  51. package/build/esm/components/ObjectLoadingMetrics.js.map +1 -0
  52. package/build/esm/components/OsdkAppErrorBoundary.js +68 -0
  53. package/build/esm/components/OsdkAppErrorBoundary.js.map +1 -0
  54. package/build/esm/components/OsdkDevTools.js +40 -0
  55. package/build/esm/components/OsdkDevTools.js.map +1 -0
  56. package/build/esm/components/OverrideEditor.js +197 -0
  57. package/build/esm/components/OverrideEditor.js.map +1 -0
  58. package/build/esm/components/PerformanceTab.js +297 -0
  59. package/build/esm/components/PerformanceTab.js.map +1 -0
  60. package/build/esm/components/PrimitiveSelectionPanel.js +220 -0
  61. package/build/esm/components/PrimitiveSelectionPanel.js.map +1 -0
  62. package/build/esm/components/PrimitiveSelectionPanel.module.scss.js +26 -0
  63. package/build/esm/components/issueTypes.js +2 -0
  64. package/build/esm/components/issueTypes.js.map +1 -0
  65. package/build/esm/components/resolveComponentName.js +57 -0
  66. package/build/esm/components/resolveComponentName.js.map +1 -0
  67. package/build/esm/components/testHelpers.js +312 -0
  68. package/build/esm/components/testHelpers.js.map +1 -0
  69. package/build/esm/css.d.ts +20 -0
  70. package/build/esm/fiber/DegradationNotice.js +193 -0
  71. package/build/esm/fiber/DegradationNotice.js.map +1 -0
  72. package/build/esm/fiber/DevtoolsHook.js +252 -0
  73. package/build/esm/fiber/DevtoolsHook.js.map +1 -0
  74. package/build/esm/fiber/FiberAccess.js +65 -0
  75. package/build/esm/fiber/FiberAccess.js.map +1 -0
  76. package/build/esm/fiber/FiberInspection.js +140 -0
  77. package/build/esm/fiber/FiberInspection.js.map +1 -0
  78. package/build/esm/fiber/FiberTags.js +52 -0
  79. package/build/esm/fiber/FiberTags.js.map +1 -0
  80. package/build/esm/fiber/HookStateInspector.js +254 -0
  81. package/build/esm/fiber/HookStateInspector.js.map +1 -0
  82. package/build/esm/fiber/SafeFiberOperation.js +35 -0
  83. package/build/esm/fiber/SafeFiberOperation.js.map +1 -0
  84. package/build/esm/fiber/capabilities.js +180 -0
  85. package/build/esm/fiber/capabilities.js.map +1 -0
  86. package/build/esm/fiber/traverseFiber.js +129 -0
  87. package/build/esm/fiber/traverseFiber.js.map +1 -0
  88. package/build/esm/fiber/types.js +2 -0
  89. package/build/esm/fiber/types.js.map +1 -0
  90. package/build/esm/fiber/validation.js +155 -0
  91. package/build/esm/fiber/validation.js.map +1 -0
  92. package/build/esm/hooks/createPollingStore.js +81 -0
  93. package/build/esm/hooks/createPollingStore.js.map +1 -0
  94. package/build/esm/hooks/useActiveComponents.js +27 -0
  95. package/build/esm/hooks/useActiveComponents.js.map +1 -0
  96. package/build/esm/hooks/useComponentRegistry.js +25 -0
  97. package/build/esm/hooks/useComponentRegistry.js.map +1 -0
  98. package/build/esm/hooks/useComputeSelectors.js +43 -0
  99. package/build/esm/hooks/useComputeSelectors.js.map +1 -0
  100. package/build/esm/hooks/useConsoleLogs.js +46 -0
  101. package/build/esm/hooks/useConsoleLogs.js.map +1 -0
  102. package/build/esm/hooks/useInspectorSelection.js +93 -0
  103. package/build/esm/hooks/useInspectorSelection.js.map +1 -0
  104. package/build/esm/hooks/useMetrics.js +23 -0
  105. package/build/esm/hooks/useMetrics.js.map +1 -0
  106. package/build/esm/hooks/usePersistedState.js +89 -0
  107. package/build/esm/hooks/usePersistedState.js.map +1 -0
  108. package/build/esm/hooks/useRecommendations.js +123 -0
  109. package/build/esm/hooks/useRecommendations.js.map +1 -0
  110. package/build/esm/hooks/useSharedTick.js +49 -0
  111. package/build/esm/hooks/useSharedTick.js.map +1 -0
  112. package/build/esm/hooks/useTimeElapsed.js +51 -0
  113. package/build/esm/hooks/useTimeElapsed.js.map +1 -0
  114. package/build/esm/hooks/useTrackerSubscription.js +97 -0
  115. package/build/esm/hooks/useTrackerSubscription.js.map +1 -0
  116. package/build/esm/hooks/useUnusedFieldAnalysis.js +99 -0
  117. package/build/esm/hooks/useUnusedFieldAnalysis.js.map +1 -0
  118. package/build/esm/index.js +31 -0
  119. package/build/esm/index.js.map +1 -0
  120. package/build/esm/inspector/ClickToInspectSystem.js +228 -0
  121. package/build/esm/inspector/ClickToInspectSystem.js.map +1 -0
  122. package/build/esm/inspector/components/ComponentLabel.js +175 -0
  123. package/build/esm/inspector/components/ComponentLabel.js.map +1 -0
  124. package/build/esm/inspector/components/ComponentLabel.module.scss.js +12 -0
  125. package/build/esm/inspector/components/InspectorBanner.js +79 -0
  126. package/build/esm/inspector/components/InspectorBanner.js.map +1 -0
  127. package/build/esm/inspector/components/InspectorOverlay.js +149 -0
  128. package/build/esm/inspector/components/InspectorOverlay.js.map +1 -0
  129. package/build/esm/inspector/components/SelectionHighlight.js +74 -0
  130. package/build/esm/inspector/components/SelectionHighlight.js.map +1 -0
  131. package/build/esm/inspector/createClickToInspect.js +21 -0
  132. package/build/esm/inspector/createClickToInspect.js.map +1 -0
  133. package/build/esm/inspector/hooks/useAnimatedBounds.js +167 -0
  134. package/build/esm/inspector/hooks/useAnimatedBounds.js.map +1 -0
  135. package/build/esm/inspector/index.js +40 -0
  136. package/build/esm/inspector/index.js.map +1 -0
  137. package/build/esm/inspector/inspectorController.js +328 -0
  138. package/build/esm/inspector/inspectorController.js.map +1 -0
  139. package/build/esm/inspector/types.js +2 -0
  140. package/build/esm/inspector/types.js.map +1 -0
  141. package/build/esm/inspector/utils/elementBounds.js +72 -0
  142. package/build/esm/inspector/utils/elementBounds.js.map +1 -0
  143. package/build/esm/inspector/utils/interpolation.js +26 -0
  144. package/build/esm/inspector/utils/interpolation.js.map +1 -0
  145. package/build/esm/inspector/utils/labelPositioning.js +62 -0
  146. package/build/esm/inspector/utils/labelPositioning.js.map +1 -0
  147. package/build/esm/mocking/MockCacheKeyGenerator.js +109 -0
  148. package/build/esm/mocking/MockCacheKeyGenerator.js.map +1 -0
  149. package/build/esm/mocking/MockManager.js +281 -0
  150. package/build/esm/mocking/MockManager.js.map +1 -0
  151. package/build/esm/prototyping/PrototypeOverrideStore.js +66 -0
  152. package/build/esm/prototyping/PrototypeOverrideStore.js.map +1 -0
  153. package/build/esm/prototyping/index.js +18 -0
  154. package/build/esm/prototyping/index.js.map +1 -0
  155. package/build/esm/public/vite.js +19 -0
  156. package/build/esm/public/vite.js.map +1 -0
  157. package/build/esm/register.js +41 -0
  158. package/build/esm/register.js.map +1 -0
  159. package/build/esm/scss.d.ts +20 -0
  160. package/build/esm/store/ComputeStore.js +269 -0
  161. package/build/esm/store/ComputeStore.js.map +1 -0
  162. package/build/esm/store/ConsoleLogStore.js +289 -0
  163. package/build/esm/store/ConsoleLogStore.js.map +1 -0
  164. package/build/esm/store/MetricsStore.js +428 -0
  165. package/build/esm/store/MetricsStore.js.map +1 -0
  166. package/build/esm/store/MonitorStore.js +288 -0
  167. package/build/esm/store/MonitorStore.js.map +1 -0
  168. package/build/esm/store/SubscribableStore.js +38 -0
  169. package/build/esm/store/SubscribableStore.js.map +1 -0
  170. package/build/esm/store/WindowErrorStore.js +195 -0
  171. package/build/esm/store/WindowErrorStore.js.map +1 -0
  172. package/build/esm/styles.css +19441 -0
  173. package/build/esm/styles.js +31 -0
  174. package/build/esm/styles.js.map +1 -0
  175. package/build/esm/types/compute.js +2 -0
  176. package/build/esm/types/compute.js.map +1 -0
  177. package/build/esm/types/emissions.js +2 -0
  178. package/build/esm/types/emissions.js.map +1 -0
  179. package/build/esm/types/index.js +23 -0
  180. package/build/esm/types/index.js.map +1 -0
  181. package/build/esm/utils/ActionLifecycleTracker.js +178 -0
  182. package/build/esm/utils/ActionLifecycleTracker.js.map +1 -0
  183. package/build/esm/utils/CacheEfficiencyAnalyzer.js +198 -0
  184. package/build/esm/utils/CacheEfficiencyAnalyzer.js.map +1 -0
  185. package/build/esm/utils/CircularBuffer.js +96 -0
  186. package/build/esm/utils/CircularBuffer.js.map +1 -0
  187. package/build/esm/utils/ComponentContextCapture.js +215 -0
  188. package/build/esm/utils/ComponentContextCapture.js.map +1 -0
  189. package/build/esm/utils/ComponentPrimitiveDiscovery.js +173 -0
  190. package/build/esm/utils/ComponentPrimitiveDiscovery.js.map +1 -0
  191. package/build/esm/utils/ComponentQueryRegistry.js +340 -0
  192. package/build/esm/utils/ComponentQueryRegistry.js.map +1 -0
  193. package/build/esm/utils/ComputeMonitor.js +199 -0
  194. package/build/esm/utils/ComputeMonitor.js.map +1 -0
  195. package/build/esm/utils/EventTimeline.js +130 -0
  196. package/build/esm/utils/EventTimeline.js.map +1 -0
  197. package/build/esm/utils/LinkTraversalTracker.js +116 -0
  198. package/build/esm/utils/LinkTraversalTracker.js.map +1 -0
  199. package/build/esm/utils/MockDataGenerator.js +473 -0
  200. package/build/esm/utils/MockDataGenerator.js.map +1 -0
  201. package/build/esm/utils/ObservableClientMonitor.js +768 -0
  202. package/build/esm/utils/ObservableClientMonitor.js.map +1 -0
  203. package/build/esm/utils/PerformanceRecommendationEngine.js +185 -0
  204. package/build/esm/utils/PerformanceRecommendationEngine.js.map +1 -0
  205. package/build/esm/utils/PropertyAccessTracker.js +238 -0
  206. package/build/esm/utils/PropertyAccessTracker.js.map +1 -0
  207. package/build/esm/utils/RecommendationMatcher.js +53 -0
  208. package/build/esm/utils/RecommendationMatcher.js.map +1 -0
  209. package/build/esm/utils/SubscriptionTracker.js +132 -0
  210. package/build/esm/utils/SubscriptionTracker.js.map +1 -0
  211. package/build/esm/utils/UnusedFieldAnalyzer.js +186 -0
  212. package/build/esm/utils/UnusedFieldAnalyzer.js.map +1 -0
  213. package/build/esm/utils/WaterfallDetector.js +200 -0
  214. package/build/esm/utils/WaterfallDetector.js.map +1 -0
  215. package/build/esm/utils/computePayload.js +37 -0
  216. package/build/esm/utils/computePayload.js.map +1 -0
  217. package/build/esm/utils/computeRequest.js +29 -0
  218. package/build/esm/utils/computeRequest.js.map +1 -0
  219. package/build/esm/utils/format.js +69 -0
  220. package/build/esm/utils/format.js.map +1 -0
  221. package/build/esm/utils/logger.js +31 -0
  222. package/build/esm/utils/logger.js.map +1 -0
  223. package/build/esm/vite/constants.js +18 -0
  224. package/build/esm/vite/constants.js.map +1 -0
  225. package/build/esm/vite/hookInstaller.js +99 -0
  226. package/build/esm/vite/hookInstaller.js.map +1 -0
  227. package/build/esm/vite/index.js +77 -0
  228. package/build/esm/vite/index.js.map +1 -0
  229. package/build/types/DevToolsContext.d.ts +3 -0
  230. package/build/types/DevToolsContext.d.ts.map +1 -0
  231. package/build/types/components/ActionMetrics.d.ts +6 -0
  232. package/build/types/components/ActionMetrics.d.ts.map +1 -0
  233. package/build/types/components/BubbleChart.d.ts +10 -0
  234. package/build/types/components/BubbleChart.d.ts.map +1 -0
  235. package/build/types/components/CacheInspectorTab.d.ts +6 -0
  236. package/build/types/components/CacheInspectorTab.d.ts.map +1 -0
  237. package/build/types/components/CacheMetrics.d.ts +6 -0
  238. package/build/types/components/CacheMetrics.d.ts.map +1 -0
  239. package/build/types/components/ComponentCard.d.ts +13 -0
  240. package/build/types/components/ComponentCard.d.ts.map +1 -0
  241. package/build/types/components/ComputeTab.d.ts +6 -0
  242. package/build/types/components/ComputeTab.d.ts.map +1 -0
  243. package/build/types/components/CopyableCodeBlock.d.ts +7 -0
  244. package/build/types/components/CopyableCodeBlock.d.ts.map +1 -0
  245. package/build/types/components/DebuggingTab.d.ts +6 -0
  246. package/build/types/components/DebuggingTab.d.ts.map +1 -0
  247. package/build/types/components/HookRow.d.ts +9 -0
  248. package/build/types/components/HookRow.d.ts.map +1 -0
  249. package/build/types/components/ImprovementsTab.d.ts +7 -0
  250. package/build/types/components/ImprovementsTab.d.ts.map +1 -0
  251. package/build/types/components/InspectorSelectionHeader.d.ts +12 -0
  252. package/build/types/components/InspectorSelectionHeader.d.ts.map +1 -0
  253. package/build/types/components/InterceptTab.d.ts +126 -0
  254. package/build/types/components/InterceptTab.d.ts.map +1 -0
  255. package/build/types/components/IssueCard.d.ts +8 -0
  256. package/build/types/components/IssueCard.d.ts.map +1 -0
  257. package/build/types/components/LogEntryCard.d.ts +7 -0
  258. package/build/types/components/LogEntryCard.d.ts.map +1 -0
  259. package/build/types/components/MockEditor.d.ts +58 -0
  260. package/build/types/components/MockEditor.d.ts.map +1 -0
  261. package/build/types/components/MonitorErrorBoundary.d.ts +16 -0
  262. package/build/types/components/MonitorErrorBoundary.d.ts.map +1 -0
  263. package/build/types/components/MonitoringPanel.d.ts +8 -0
  264. package/build/types/components/MonitoringPanel.d.ts.map +1 -0
  265. package/build/types/components/ObjectLoadingMetrics.d.ts +7 -0
  266. package/build/types/components/ObjectLoadingMetrics.d.ts.map +1 -0
  267. package/build/types/components/OsdkAppErrorBoundary.d.ts +18 -0
  268. package/build/types/components/OsdkAppErrorBoundary.d.ts.map +1 -0
  269. package/build/types/components/OsdkDevTools.d.ts +2 -0
  270. package/build/types/components/OsdkDevTools.d.ts.map +1 -0
  271. package/build/types/components/OverrideEditor.d.ts +26 -0
  272. package/build/types/components/OverrideEditor.d.ts.map +1 -0
  273. package/build/types/components/PerformanceTab.d.ts +8 -0
  274. package/build/types/components/PerformanceTab.d.ts.map +1 -0
  275. package/build/types/components/PrimitiveSelectionPanel.d.ts +28 -0
  276. package/build/types/components/PrimitiveSelectionPanel.d.ts.map +1 -0
  277. package/build/types/components/issueTypes.d.ts +16 -0
  278. package/build/types/components/issueTypes.d.ts.map +1 -0
  279. package/build/types/components/resolveComponentName.d.ts +3 -0
  280. package/build/types/components/resolveComponentName.d.ts.map +1 -0
  281. package/build/types/components/testHelpers.d.ts +2 -0
  282. package/build/types/components/testHelpers.d.ts.map +1 -0
  283. package/build/types/css.d.d.ts +4 -0
  284. package/build/types/css.d.d.ts.map +1 -0
  285. package/build/types/fiber/DegradationNotice.d.ts +8 -0
  286. package/build/types/fiber/DegradationNotice.d.ts.map +1 -0
  287. package/build/types/fiber/DevtoolsHook.d.ts +7 -0
  288. package/build/types/fiber/DevtoolsHook.d.ts.map +1 -0
  289. package/build/types/fiber/FiberAccess.d.ts +2 -0
  290. package/build/types/fiber/FiberAccess.d.ts.map +1 -0
  291. package/build/types/fiber/FiberInspection.d.ts +6 -0
  292. package/build/types/fiber/FiberInspection.d.ts.map +1 -0
  293. package/build/types/fiber/FiberTags.d.ts +33 -0
  294. package/build/types/fiber/FiberTags.d.ts.map +1 -0
  295. package/build/types/fiber/HookStateInspector.d.ts +45 -0
  296. package/build/types/fiber/HookStateInspector.d.ts.map +1 -0
  297. package/build/types/fiber/SafeFiberOperation.d.ts +7 -0
  298. package/build/types/fiber/SafeFiberOperation.d.ts.map +1 -0
  299. package/build/types/fiber/capabilities.d.ts +38 -0
  300. package/build/types/fiber/capabilities.d.ts.map +1 -0
  301. package/build/types/fiber/traverseFiber.d.ts +5 -0
  302. package/build/types/fiber/traverseFiber.d.ts.map +1 -0
  303. package/build/types/fiber/types.d.ts +87 -0
  304. package/build/types/fiber/types.d.ts.map +1 -0
  305. package/build/types/fiber/validation.d.ts +10 -0
  306. package/build/types/fiber/validation.d.ts.map +1 -0
  307. package/build/types/hooks/createPollingStore.d.ts +5 -0
  308. package/build/types/hooks/createPollingStore.d.ts.map +1 -0
  309. package/build/types/hooks/useActiveComponents.d.ts +3 -0
  310. package/build/types/hooks/useActiveComponents.d.ts.map +1 -0
  311. package/build/types/hooks/useComponentRegistry.d.ts +3 -0
  312. package/build/types/hooks/useComponentRegistry.d.ts.map +1 -0
  313. package/build/types/hooks/useComputeSelectors.d.ts +7 -0
  314. package/build/types/hooks/useComputeSelectors.d.ts.map +1 -0
  315. package/build/types/hooks/useConsoleLogs.d.ts +7 -0
  316. package/build/types/hooks/useConsoleLogs.d.ts.map +1 -0
  317. package/build/types/hooks/useInspectorSelection.d.ts +9 -0
  318. package/build/types/hooks/useInspectorSelection.d.ts.map +1 -0
  319. package/build/types/hooks/useMetrics.d.ts +3 -0
  320. package/build/types/hooks/useMetrics.d.ts.map +1 -0
  321. package/build/types/hooks/usePersistedState.d.ts +1 -0
  322. package/build/types/hooks/usePersistedState.d.ts.map +1 -0
  323. package/build/types/hooks/useRecommendations.d.ts +10 -0
  324. package/build/types/hooks/useRecommendations.d.ts.map +1 -0
  325. package/build/types/hooks/useSharedTick.d.ts +1 -0
  326. package/build/types/hooks/useSharedTick.d.ts.map +1 -0
  327. package/build/types/hooks/useTimeElapsed.d.ts +1 -0
  328. package/build/types/hooks/useTimeElapsed.d.ts.map +1 -0
  329. package/build/types/hooks/useTrackerSubscription.d.ts +16 -0
  330. package/build/types/hooks/useTrackerSubscription.d.ts.map +1 -0
  331. package/build/types/hooks/useUnusedFieldAnalysis.d.ts +8 -0
  332. package/build/types/hooks/useUnusedFieldAnalysis.d.ts.map +1 -0
  333. package/build/types/index.d.ts +21 -0
  334. package/build/types/index.d.ts.map +1 -0
  335. package/build/types/inspector/ClickToInspectSystem.d.ts +40 -0
  336. package/build/types/inspector/ClickToInspectSystem.d.ts.map +1 -0
  337. package/build/types/inspector/components/ComponentLabel.d.ts +3 -0
  338. package/build/types/inspector/components/ComponentLabel.d.ts.map +1 -0
  339. package/build/types/inspector/components/InspectorBanner.d.ts +5 -0
  340. package/build/types/inspector/components/InspectorBanner.d.ts.map +1 -0
  341. package/build/types/inspector/components/InspectorOverlay.d.ts +3 -0
  342. package/build/types/inspector/components/InspectorOverlay.d.ts.map +1 -0
  343. package/build/types/inspector/components/SelectionHighlight.d.ts +3 -0
  344. package/build/types/inspector/components/SelectionHighlight.d.ts.map +1 -0
  345. package/build/types/inspector/createClickToInspect.d.ts +3 -0
  346. package/build/types/inspector/createClickToInspect.d.ts.map +1 -0
  347. package/build/types/inspector/hooks/useAnimatedBounds.d.ts +2 -0
  348. package/build/types/inspector/hooks/useAnimatedBounds.d.ts.map +1 -0
  349. package/build/types/inspector/index.d.ts +13 -0
  350. package/build/types/inspector/index.d.ts.map +1 -0
  351. package/build/types/inspector/inspectorController.d.ts +2 -0
  352. package/build/types/inspector/inspectorController.d.ts.map +1 -0
  353. package/build/types/inspector/types.d.ts +94 -0
  354. package/build/types/inspector/types.d.ts.map +1 -0
  355. package/build/types/inspector/utils/elementBounds.d.ts +3 -0
  356. package/build/types/inspector/utils/elementBounds.d.ts.map +1 -0
  357. package/build/types/inspector/utils/interpolation.d.ts +7 -0
  358. package/build/types/inspector/utils/interpolation.d.ts.map +1 -0
  359. package/build/types/inspector/utils/labelPositioning.d.ts +3 -0
  360. package/build/types/inspector/utils/labelPositioning.d.ts.map +1 -0
  361. package/build/types/mocking/MockCacheKeyGenerator.d.ts +41 -0
  362. package/build/types/mocking/MockCacheKeyGenerator.d.ts.map +1 -0
  363. package/build/types/mocking/MockManager.d.ts +103 -0
  364. package/build/types/mocking/MockManager.d.ts.map +1 -0
  365. package/build/types/prototyping/PrototypeOverrideStore.d.ts +33 -0
  366. package/build/types/prototyping/PrototypeOverrideStore.d.ts.map +1 -0
  367. package/build/types/prototyping/index.d.ts +1 -0
  368. package/build/types/prototyping/index.d.ts.map +1 -0
  369. package/build/types/public/vite.d.ts +2 -0
  370. package/build/types/public/vite.d.ts.map +1 -0
  371. package/build/types/register.d.ts +1 -0
  372. package/build/types/register.d.ts.map +1 -0
  373. package/build/types/scss.d.d.ts +6 -0
  374. package/build/types/scss.d.d.ts.map +1 -0
  375. package/build/types/store/ComputeStore.d.ts +47 -0
  376. package/build/types/store/ComputeStore.d.ts.map +1 -0
  377. package/build/types/store/ConsoleLogStore.d.ts +29 -0
  378. package/build/types/store/ConsoleLogStore.d.ts.map +1 -0
  379. package/build/types/store/MetricsStore.d.ts +42 -0
  380. package/build/types/store/MetricsStore.d.ts.map +1 -0
  381. package/build/types/store/MonitorStore.d.ts +86 -0
  382. package/build/types/store/MonitorStore.d.ts.map +1 -0
  383. package/build/types/store/SubscribableStore.d.ts +6 -0
  384. package/build/types/store/SubscribableStore.d.ts.map +1 -0
  385. package/build/types/store/WindowErrorStore.d.ts +32 -0
  386. package/build/types/store/WindowErrorStore.d.ts.map +1 -0
  387. package/build/types/styles.d.ts +1 -0
  388. package/build/types/styles.d.ts.map +1 -0
  389. package/build/types/types/compute.d.ts +73 -0
  390. package/build/types/types/compute.d.ts.map +1 -0
  391. package/build/types/types/emissions.d.ts +24 -0
  392. package/build/types/types/emissions.d.ts.map +1 -0
  393. package/build/types/types/index.d.ts +143 -0
  394. package/build/types/types/index.d.ts.map +1 -0
  395. package/build/types/utils/ActionLifecycleTracker.d.ts +39 -0
  396. package/build/types/utils/ActionLifecycleTracker.d.ts.map +1 -0
  397. package/build/types/utils/CacheEfficiencyAnalyzer.d.ts +45 -0
  398. package/build/types/utils/CacheEfficiencyAnalyzer.d.ts.map +1 -0
  399. package/build/types/utils/CircularBuffer.d.ts +18 -0
  400. package/build/types/utils/CircularBuffer.d.ts.map +1 -0
  401. package/build/types/utils/ComponentContextCapture.d.ts +29 -0
  402. package/build/types/utils/ComponentContextCapture.d.ts.map +1 -0
  403. package/build/types/utils/ComponentPrimitiveDiscovery.d.ts +62 -0
  404. package/build/types/utils/ComponentPrimitiveDiscovery.d.ts.map +1 -0
  405. package/build/types/utils/ComponentQueryRegistry.d.ts +91 -0
  406. package/build/types/utils/ComponentQueryRegistry.d.ts.map +1 -0
  407. package/build/types/utils/ComputeMonitor.d.ts +14 -0
  408. package/build/types/utils/ComputeMonitor.d.ts.map +1 -0
  409. package/build/types/utils/EventTimeline.d.ts +102 -0
  410. package/build/types/utils/EventTimeline.d.ts.map +1 -0
  411. package/build/types/utils/LinkTraversalTracker.d.ts +43 -0
  412. package/build/types/utils/LinkTraversalTracker.d.ts.map +1 -0
  413. package/build/types/utils/MockDataGenerator.d.ts +23 -0
  414. package/build/types/utils/MockDataGenerator.d.ts.map +1 -0
  415. package/build/types/utils/ObservableClientMonitor.d.ts +62 -0
  416. package/build/types/utils/ObservableClientMonitor.d.ts.map +1 -0
  417. package/build/types/utils/PerformanceRecommendationEngine.d.ts +67 -0
  418. package/build/types/utils/PerformanceRecommendationEngine.d.ts.map +1 -0
  419. package/build/types/utils/PropertyAccessTracker.d.ts +50 -0
  420. package/build/types/utils/PropertyAccessTracker.d.ts.map +1 -0
  421. package/build/types/utils/RecommendationMatcher.d.ts +5 -0
  422. package/build/types/utils/RecommendationMatcher.d.ts.map +1 -0
  423. package/build/types/utils/SubscriptionTracker.d.ts +17 -0
  424. package/build/types/utils/SubscriptionTracker.d.ts.map +1 -0
  425. package/build/types/utils/UnusedFieldAnalyzer.d.ts +46 -0
  426. package/build/types/utils/UnusedFieldAnalyzer.d.ts.map +1 -0
  427. package/build/types/utils/WaterfallDetector.d.ts +28 -0
  428. package/build/types/utils/WaterfallDetector.d.ts.map +1 -0
  429. package/build/types/utils/computePayload.d.ts +3 -0
  430. package/build/types/utils/computePayload.d.ts.map +1 -0
  431. package/build/types/utils/computeRequest.d.ts +20 -0
  432. package/build/types/utils/computeRequest.d.ts.map +1 -0
  433. package/build/types/utils/format.d.ts +5 -0
  434. package/build/types/utils/format.d.ts.map +1 -0
  435. package/build/types/utils/logger.d.ts +2 -0
  436. package/build/types/utils/logger.d.ts.map +1 -0
  437. package/build/types/vite/constants.d.ts +1 -0
  438. package/build/types/vite/constants.d.ts.map +1 -0
  439. package/build/types/vite/hookInstaller.d.ts +1 -0
  440. package/build/types/vite/hookInstaller.d.ts.map +1 -0
  441. package/build/types/vite/index.d.ts +20 -0
  442. package/build/types/vite/index.d.ts.map +1 -0
  443. package/package.json +114 -0
@@ -0,0 +1 @@
1
+ {"mappings":"AAgBA,cACE,WAEA,qBACK,YAAa;AA4NpB,OAAO,iBAAS;AAUhB,OAAO,iBAAS;AAOhB,OAAO,iBAAS,gBAAgB,YAAY;AAK5C,OAAO,iBAAS,oBAAoB;AAQpC,OAAO,iBAAS,gBAAgBA;AAUhC,OAAO,iBAAS,kBACdC,UACEC,oBACAC,MAAM,WACNC","names":["callback: () => void","handler: (\n rendererID: number,\n root: FiberRoot,\n priority: number | undefined,\n ) => void","rendererID: number","root: FiberRoot","priority: number | undefined"],"sources":["../../../src/fiber/DevtoolsHook.ts"],"version":3,"file":"DevtoolsHook.d.ts"}
@@ -0,0 +1,2 @@
1
+ import type { Fiber } from "./types.js";
2
+ export declare function getFiberFromElement(element: Element): Fiber | null;
@@ -0,0 +1 @@
1
+ {"mappings":"AAkBA,cAAc,aAAa,YAAa;AAexC,OAAO,iBAAS,oBAAoBA,SAAS,UAAU","names":["element: Element"],"sources":["../../../src/fiber/FiberAccess.ts"],"version":3,"file":"FiberAccess.d.ts"}
@@ -0,0 +1,6 @@
1
+ import type { Fiber, SourceLocation } from "./types.js";
2
+ export declare function getComponentName(fiber: Fiber): string;
3
+ export declare function getComponentId(fiber: Fiber): string;
4
+ export declare function getSourceLocation(fiber: Fiber): SourceLocation | null;
5
+ export declare function getProps(fiber: Fiber): Record<string, unknown>;
6
+ export declare function getHookStates(fiber: Fiber): unknown[];
@@ -0,0 +1 @@
1
+ {"mappings":"AAkBA,cAAc,OAAO,sBAAsB,YAAa;AAExD,OAAO,iBAAS,iBAAiBA,OAAO;AAqExC,OAAO,iBAAS,eAAeA,OAAO;AA4BtC,OAAO,iBAAS,kBAAkBA,OAAO,QAAQ;AAgBjD,OAAO,iBAAS,SAASA,OAAO,QAAQ;AAYxC,OAAO,iBAAS,cAAcA,OAAO","names":["fiber: Fiber"],"sources":["../../../src/fiber/FiberInspection.ts"],"version":3,"file":"FiberInspection.d.ts"}
@@ -0,0 +1,33 @@
1
+ import type { Fiber } from "./types.js";
2
+ export declare const FIBER_TAG: {
3
+ readonly FUNCTION_COMPONENT: 0
4
+ readonly CLASS_COMPONENT: 1
5
+ readonly INDETERMINATE_COMPONENT: 2
6
+ readonly HOST_ROOT: 3
7
+ readonly HOST_PORTAL: 4
8
+ readonly HOST_ELEMENT: 5
9
+ readonly HOST_TEXT: 6
10
+ readonly FRAGMENT: 7
11
+ readonly MODE: 8
12
+ readonly CONTEXT_CONSUMER: 9
13
+ readonly CONTEXT_PROVIDER: 10
14
+ readonly FORWARD_REF: 11
15
+ readonly PROFILER: 12
16
+ readonly SUSPENSE: 13
17
+ readonly MEMO: 14
18
+ readonly SIMPLE_MEMO: 15
19
+ readonly LAZY: 16
20
+ readonly INCOMPLETE_CLASS: 17
21
+ readonly DEHYDRATED_FRAGMENT: 18
22
+ readonly SUSPENSE_LIST: 19
23
+ readonly SCOPE: 21
24
+ readonly OFFSCREEN: 22
25
+ readonly LEGACY_HIDDEN: 23
26
+ readonly CACHE: 24
27
+ readonly TRACING_MARKER: 25
28
+ readonly HOST_HOISTABLE: 26
29
+ readonly HOST_SINGLETON: 27
30
+ readonly ACTIVITY: 28
31
+ readonly VIEW_TRANSITION: 30
32
+ };
33
+ export declare function isUserComponent(fiber: Fiber): boolean;
@@ -0,0 +1 @@
1
+ {"mappings":"AAgBA,cAAc,aAAa,YAAa;AAExC,OAAO,cAAM;UACX,oBAAoB;UACpB,iBAAiB;UACjB,yBAAyB;UACzB,WAAW;UACX,aAAa;UACb,cAAc;UACd,WAAW;UACX,UAAU;UACV,MAAM;UACN,kBAAkB;UAClB,kBAAkB;UAClB,aAAa;UACb,UAAU;UACV,UAAU;UACV,MAAM;UACN,aAAa;UACb,MAAM;UACN,kBAAkB;UAClB,qBAAqB;UACrB,eAAe;UACf,OAAO;UACP,WAAW;UACX,eAAe;UACf,OAAO;UACP,gBAAgB;UAChB,gBAAgB;UAChB,gBAAgB;UAChB,UAAU;UACV,iBAAiB;;AAGnB,OAAO,iBAAS,gBAAgBA,OAAO","names":["fiber: Fiber"],"sources":["../../../src/fiber/FiberTags.ts"],"version":3,"file":"FiberTags.d.ts"}
@@ -0,0 +1,45 @@
1
+ import type { Fiber, FiberRoot } from "./types.js";
2
+ export interface OsdkHookMetadata {
3
+ readonly [key: symbol]: true;
4
+ readonly hookType: "useOsdkAction" | "useOsdkObjects" | "useOsdkObject" | "useLinks" | "useOsdkAggregation" | "useOsdkFunction" | "useObjectSet";
5
+ readonly actionName?: string;
6
+ readonly objectType?: string;
7
+ readonly primaryKey?: string;
8
+ readonly sourceObjectType?: string;
9
+ readonly linkName?: string;
10
+ readonly where?: unknown;
11
+ readonly orderBy?: unknown;
12
+ readonly pageSize?: number;
13
+ readonly aggregate?: unknown;
14
+ }
15
+ export interface OsdkConsumerFiber {
16
+ fiber: Fiber;
17
+ componentName: string;
18
+ sourceLocation: {
19
+ fileName?: string
20
+ lineNumber?: number
21
+ } | null;
22
+ sourceBasedId: string | null;
23
+ }
24
+ export declare function findOsdkConsumersInAncestors(fiber: Fiber, maxDepth?: number): OsdkConsumerFiber[];
25
+ export declare function hasOsdkConsumerInTree(fiber: Fiber, maxDepth?: number): boolean;
26
+ interface SearchScope {
27
+ maxAncestorLevels: number;
28
+ maxChildDepth: number;
29
+ maxTotalResults: number;
30
+ maxSiblingsPerLevel: number;
31
+ }
32
+ export declare function findOsdkConsumersInSiblings(fiber: Fiber, scope?: SearchScope): OsdkConsumerFiber[];
33
+ export declare function findOsdkConsumersInDescendants(fiber: Fiber, scope?: SearchScope): OsdkConsumerFiber[];
34
+ export declare function extractOsdkMetadataFromFiber(fiber: Fiber): OsdkHookMetadata[];
35
+ export interface DiscoveredComponent {
36
+ componentId: string;
37
+ componentName: string;
38
+ hooks: OsdkHookMetadata[];
39
+ sourceLocation: {
40
+ fileName?: string
41
+ lineNumber?: number
42
+ } | null;
43
+ }
44
+ export declare function discoverOsdkComponentsFromRoot(fiberRoot: FiberRoot): Map<string, DiscoveredComponent>;
45
+ export {};
@@ -0,0 +1 @@
1
+ {"mappings":"AAmBA,cAEE,OACA,iBAEK,YAAa;AAIpB,iBAAiB,iBAAiB;yBACR;UACf,UACL,kBACA,mBACA,kBACA,aACA,uBACA,oBACA;UACK;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;AACV;AAED,iBAAiB,kBAAkB;CACjC,OAAO;CACP;CACA,gBAAgB;EAAE;EAAmB;CAAqB;CAC1D;AACD;AAsED,OAAO,iBAAS,6BACdA,OAAO,OACP,oBACC;AAUH,OAAO,iBAAS,sBAAsBA,OAAO,OAAO;UAe1C,YAAY;CACpB;CACA;CACA;CACA;AACD;AA+BD,OAAO,iBAAS,4BACdA,OAAO,OACPC,QAAO,cACN;AAiEH,OAAO,iBAAS,+BACdD,OAAO,OACPC,QAAO,cACN;AAiEH,OAAO,iBAAS,6BAA6BD,OAAO,QAAQ;AA8E5D,iBAAiB,oBAAoB;CACnC;CACA;CACA,OAAO;CACP,gBAAgB;EAAE;EAAmB;CAAqB;AAC3D;AAED,OAAO,iBAAS,+BACdE,WAAW,YACV,YAAY","names":["fiber: Fiber","scope: SearchScope","fiberRoot: FiberRoot"],"sources":["../../../src/fiber/HookStateInspector.ts"],"version":3,"file":"HookStateInspector.d.ts"}
@@ -0,0 +1,7 @@
1
+ import { type FiberFeature } from "./capabilities.js";
2
+ interface SafeOperationOptions<T> {
3
+ fallback: T;
4
+ feature: FiberFeature;
5
+ }
6
+ export declare function safeFiberOperation<T>(operation: () => T, options: SafeOperationOptions<T>): T;
7
+ export {};
@@ -0,0 +1 @@
1
+ {"mappings":"AAgBA,cAAc,oBAA4C,mBAAoB;UAEpE,qBAAqB,GAAG;CAChC,UAAU;CACV,SAAS;AACV;AAED,OAAO,iBAAS,mBAAmB,GACjCA,iBAAiB,GACjBC,SAAS,qBAAqB,KAC7B","names":["operation: () => T","options: SafeOperationOptions<T>"],"sources":["../../../src/fiber/SafeFiberOperation.ts"],"version":3,"file":"SafeFiberOperation.d.ts"}
@@ -0,0 +1,38 @@
1
+ export type FiberFeature = "component-inspection" | "hook-discovery" | "render-tracking" | "state-inspection" | "metadata-extraction" | "fiber-discovery";
2
+ export interface FiberCapabilities {
3
+ hookInstalled: boolean;
4
+ rendererDetected: boolean;
5
+ fiberAccessWorking: boolean;
6
+ detectedReactVersion: string | null;
7
+ lastValidationTime: number;
8
+ errorCount: number;
9
+ disabledFeatures: Set<FiberFeature>;
10
+ }
11
+ interface DegradationConfig {
12
+ errorThreshold: number;
13
+ recoveryTimeout: number;
14
+ }
15
+ type CapabilitiesListener = (capabilities: FiberCapabilities) => void;
16
+ export declare class FiberCapabilitiesManager {
17
+ private capabilities;
18
+ private cachedSnapshot;
19
+ private listeners;
20
+ private featureErrorCounts;
21
+ private featureLastError;
22
+ private recoveryTimers;
23
+ private config;
24
+ constructor(config?: Partial<DegradationConfig>);
25
+ getCapabilities(): Readonly<FiberCapabilities>;
26
+ isFeatureAvailable(feature: FiberFeature): boolean;
27
+ setCapability<K extends keyof FiberCapabilities>(key: K, value: FiberCapabilities[K]): void;
28
+ recordError(feature: FiberFeature, error: unknown): void;
29
+ clearErrors(feature: FiberFeature): void;
30
+ resetAll(): void;
31
+ onCapabilitiesChange(listener: CapabilitiesListener): () => void;
32
+ dispose(): void;
33
+ private disableFeature;
34
+ private scheduleRecoveryCheck;
35
+ private notifyListeners;
36
+ }
37
+ export declare function getCapabilitiesManager(): FiberCapabilitiesManager;
38
+ export {};
@@ -0,0 +1 @@
1
+ {"mappings":"AAgBA,YAAY,eACR,yBACA,mBACA,oBACA,qBACA,wBACA;AAEJ,iBAAiB,kBAAkB;CACjC;CACA;CACA;CACA;CACA;CACA;CACA,kBAAkB,IAAI;AACvB;UAES,kBAAkB;CAC1B;CACA;AACD;KAOI,wBAAwBA,cAAc;AAE3C,OAAO,cAAM,yBAAyB;CACpC,QAAQ;CACR,QAAQ;CACR,QAAQ;CACR,QAAQ;CACR,QAAQ;CACR,QAAQ;CAER,QAAQ;CAER,YAAYC,SAAQ,QAAQ;CAa5B,mBAAmB,SAAS;CAW5B,mBAAmBC,SAAS;CAO5B,cAAc,gBAAgB,mBAC5BC,KAAK,GACLC,OAAO,kBAAkB;CAe3B,YAAYF,SAAS,cAAcG;CA4BnC,YAAYH,SAAS;CAgBrB;CAYA,qBAAqBI,UAAU;CAO/B;CAQA,QAAQ;CAqBR,QAAQ;CAuBR,QAAQ;AAUT;AAID,OAAO,iBAAS,0BAA0B","names":["capabilities: FiberCapabilities","config: Partial<DegradationConfig>","feature: FiberFeature","key: K","value: FiberCapabilities[K]","error: unknown","listener: CapabilitiesListener"],"sources":["../../../src/fiber/capabilities.ts"],"version":3,"file":"capabilities.d.ts"}
@@ -0,0 +1,5 @@
1
+ import type { Fiber } from "./types.js";
2
+ export declare function traverseFiber(fiber: Fiber | null, selector: (node: Fiber) => boolean | void, ascending?: boolean, maxDepth?: number): Fiber | null;
3
+ export declare function traverseAllFibers(fiber: Fiber | null, selector: (node: Fiber) => boolean | void, ascending?: boolean, maxResults?: number, maxDepth?: number): Fiber[];
4
+ export declare function walkFiberTree(fiber: Fiber, visitor: (fiber: Fiber) => void, maxDepth?: number): void;
5
+ export declare function findParentComponent(fiber: Fiber): Fiber | null;
@@ -0,0 +1 @@
1
+ {"mappings":"AAkBA,cAAc,aAAa,YAAa;AAIxC,OAAO,iBAAS,cACdA,OAAO,cACPC,WAAWC,MAAM,0BACjBC,qBACAC,oBACC;AA+BH,OAAO,iBAAS,kBACdJ,OAAO,cACPC,WAAWC,MAAM,0BACjBC,qBACAE,qBACAD,oBACC;AA0CH,OAAO,iBAAS,cACdE,OAAO,OACPC,UAAUD,OAAO,gBACjBF;AAkCF,OAAO,iBAAS,oBAAoBE,OAAO,QAAQ","names":["fiber: Fiber | null","selector: (node: Fiber) => boolean | void","node: Fiber","ascending?: boolean","maxDepth: number","maxResults?: number","fiber: Fiber","visitor: (fiber: Fiber) => void"],"sources":["../../../src/fiber/traverseFiber.ts"],"version":3,"file":"traverseFiber.d.ts"}
@@ -0,0 +1,87 @@
1
+ import type { Fiber as ReactFiber, FiberRoot, Flags, Lanes, ReactContext, WorkTag } from "react-reconciler";
2
+ export type { FiberRoot, Flags, Lanes, ReactContext, WorkTag };
3
+ export interface ContextDependency<T = unknown> {
4
+ context: ReactContext<T>;
5
+ memoizedValue: T;
6
+ next: ContextDependency | null;
7
+ observedBits: number;
8
+ }
9
+ export interface Dependencies {
10
+ firstContext: ContextDependency | null;
11
+ lanes: Lanes;
12
+ }
13
+ export interface Effect {
14
+ create: (...args: unknown[]) => unknown;
15
+ deps: unknown[] | null;
16
+ destroy: ((...args: unknown[]) => unknown) | null;
17
+ next: Effect | null;
18
+ tag: number;
19
+ }
20
+ export interface MemoizedState {
21
+ memoizedState: unknown;
22
+ next: MemoizedState | null;
23
+ }
24
+ export interface FiberProps {
25
+ [key: string]: unknown;
26
+ }
27
+ export interface UpdateQueue {
28
+ lastEffect: Effect | null;
29
+ }
30
+ export type Fiber<TStateNode = unknown> = Omit<ReactFiber, "alternate" | "child" | "dependencies" | "memoizedProps" | "memoizedState" | "pendingProps" | "return" | "sibling" | "stateNode" | "updateQueue"> & {
31
+ _debugInfo?: Array<{
32
+ debugLocation?: unknown
33
+ env?: string
34
+ name?: string
35
+ }>
36
+ _debugOwner?: Fiber
37
+ _debugSource?: {
38
+ columnNumber?: number
39
+ fileName: string
40
+ lineNumber: number
41
+ }
42
+ _debugStack?: Error & {
43
+ stack: string
44
+ }
45
+ alternate: Fiber | null
46
+ child: Fiber | null
47
+ return: Fiber | null
48
+ sibling: Fiber | null
49
+ dependencies: Dependencies | null
50
+ memoizedProps: FiberProps
51
+ memoizedState: MemoizedState | null
52
+ pendingProps: FiberProps
53
+ stateNode: TStateNode
54
+ updateQueue: UpdateQueue | null
55
+ };
56
+ export interface ReactRenderer {
57
+ bundleType: 0 | 1;
58
+ findFiberByHostInstance?: (hostInstance: unknown) => Fiber | null;
59
+ getCurrentFiber?: (fiber: Fiber) => Fiber | null;
60
+ overrideHookState?: (fiber: Fiber, id: string, path: string[], value: unknown) => void;
61
+ overrideProps?: (fiber: Fiber, path: string[], value: unknown) => void;
62
+ reconcilerVersion: string;
63
+ rendererPackageName: string;
64
+ version: string;
65
+ }
66
+ export interface ReactDevToolsGlobalHook {
67
+ _instrumentationIsActive?: boolean;
68
+ _instrumentationSource?: string;
69
+ checkDCE: (fn: unknown) => void;
70
+ hasUnsupportedRendererAttached: boolean;
71
+ inject: (renderer: ReactRenderer) => number;
72
+ on: () => void;
73
+ onCommitFiberRoot: (rendererID: number, root: FiberRoot, priority: number | void) => void;
74
+ onCommitFiberUnmount: (rendererID: number, fiber: Fiber) => void;
75
+ onPostCommitFiberRoot: (rendererID: number, root: FiberRoot) => void;
76
+ renderers: Map<number, ReactRenderer>;
77
+ supportsFiber: boolean;
78
+ supportsFlight: boolean;
79
+ }
80
+ export interface SourceLocation {
81
+ fileName: string;
82
+ lineNumber: number;
83
+ columnNumber?: number;
84
+ }
85
+ declare global {
86
+ var __REACT_DEVTOOLS_GLOBAL_HOOK__: ReactDevToolsGlobalHook | undefined;
87
+ }
@@ -0,0 +1 @@
1
+ {"mappings":"AAgBA,cACE,SAAS,YACT,WACA,OACA,OACA,cACA,eACK,kBAAmB;AAE1B,cAAc,WAAW,OAAO,OAAO,cAAc;AAErD,iBAAiB,kBAAkB,aAAa;CAC9C,SAAS,aAAa;CACtB,eAAe;CACf,MAAM;CACN;AACD;AAED,iBAAiB,aAAa;CAC5B,cAAc;CACd,OAAO;AACR;AAED,iBAAiB,OAAO;CACtB,SAAS,GAAG;CACZ;CACA,WAAW,GAAG;CACd,MAAM;CACN;AACD;AAED,iBAAiB,cAAc;CAC7B;CACA,MAAM;AACP;AAED,iBAAiB,WAAW;;AAE3B;AAED,iBAAiB,YAAY;CAC3B,YAAY;AACb;AAED,YAAY,MAAM,wBACd,KACA,YACE,cACA,UACA,iBACA,kBACA,kBACA,iBACA,WACA,YACA,cACA,iBAEF;CACA,aAAa,MAAM;EACjB;EACA;EACA;CACD;CAED,cAAc;CACd,eAAe;EACb;EACA;EACA;CACD;CAED,cAAc,QAAQ;EAAE;CAAe;CACvC,WAAW;CACX,OAAO;CACP,QAAQ;CACR,SAAS;CAET,cAAc;CACd,eAAe;CACf,eAAe;CACf,cAAc;CACd,WAAW;CACX,aAAa;AACd;AAEH,iBAAiB,cAAc;CAC7B,YAAY,IAAI;CAChB,2BAA2BA,0BAA0B;CACrD,mBAAmBC,OAAO,UAAU;CACpC,qBACEA,OAAO,OACPC,YACAC,gBACAC;CAEF,iBAAiBH,OAAO,OAAOE,gBAAgBC;CAC/C;CACA;CACA;AACD;AAED,iBAAiB,wBAAwB;CACvC;CACA;CACA,WAAWC;CACX;CACA,SAASC,UAAU;CACnB;CACA,oBACEC,oBACAC,MAAM,WACNC;CAEF,uBAAuBF,oBAAoBN,OAAO;CAClD,wBAAwBM,oBAAoBC,MAAM;CAClD,WAAW,YAAY;CACvB;CACA;AACD;AAED,iBAAiB,eAAe;CAC9B;CACA;CACA;AACD;eAEc;CACb,IAAIE,gCAAgC;AACrC","names":["hostInstance: unknown","fiber: Fiber","id: string","path: string[]","value: unknown","fn: unknown","renderer: ReactRenderer","rendererID: number","root: FiberRoot","priority: number | void","__REACT_DEVTOOLS_GLOBAL_HOOK__: ReactDevToolsGlobalHook | undefined"],"sources":["../../../src/fiber/types.ts"],"version":3,"file":"types.d.ts"}
@@ -0,0 +1,10 @@
1
+ import type { ValidationError } from "../types/index.js";
2
+ import { type FiberCapabilities } from "./capabilities.js";
3
+ interface ValidationResult {
4
+ success: boolean;
5
+ reactVersion: string | null;
6
+ capabilities: Partial<FiberCapabilities>;
7
+ errors: ValidationError[];
8
+ }
9
+ export declare function validateFiberAccess(): ValidationResult;
10
+ export {};
@@ -0,0 +1 @@
1
+ {"mappings":"AAgBA,cAAc,uBAAuB,mBAAoB;AACzD,cACO,yBAEA,mBAAoB;UAGjB,iBAAiB;CACzB;CACA;CACA,cAAc,QAAQ;CACtB,QAAQ;AACT;AAED,OAAO,iBAAS,uBAAuB","names":[],"sources":["../../../src/fiber/validation.ts"],"version":3,"file":"validation.d.ts"}
@@ -0,0 +1,5 @@
1
+ export declare function createPollingStore<T>(fetchFn: () => T | Promise<T>, intervalMs: number): {
2
+ subscribe: (callback: () => void) => () => void
3
+ getSnapshot: () => T | undefined
4
+ forceRefresh: () => void
5
+ };
@@ -0,0 +1 @@
1
+ {"mappings":"AAgBA,OAAO,iBAAS,mBAAmB,GACjCA,eAAe,IAAI,QAAQ,IAC3BC,qBACC;CACD,YAAYC;CACZ,mBAAmB;CACnB;AACD","names":["fetchFn: () => T | Promise<T>","intervalMs: number","callback: () => void"],"sources":["../../../src/hooks/createPollingStore.ts"],"version":3,"file":"createPollingStore.d.ts"}
@@ -0,0 +1,3 @@
1
+ import type { MonitorStore } from "../store/MonitorStore.js";
2
+ import type { ComponentHookBinding } from "../utils/ComponentQueryRegistry.js";
3
+ export declare function useActiveComponents(monitorStore: MonitorStore): Map<string, ComponentHookBinding[]>;
@@ -0,0 +1 @@
1
+ {"mappings":"AAiBA,cAAc,oBAAoB,0BAA2B;AAC7D,cAAc,4BAA4B,oCAAqC;AAG/E,OAAO,iBAAS,oBACdA,cAAc,eACb,YAAY","names":["monitorStore: MonitorStore"],"sources":["../../../src/hooks/useActiveComponents.ts"],"version":3,"file":"useActiveComponents.d.ts"}
@@ -0,0 +1,3 @@
1
+ import type { MonitorStore } from "../store/MonitorStore.js";
2
+ import type { ComponentQueryRegistry } from "../utils/ComponentQueryRegistry.js";
3
+ export declare function useComponentRegistry(monitorStore: MonitorStore): ComponentQueryRegistry;
@@ -0,0 +1 @@
1
+ {"mappings":"AAiBA,cAAc,oBAAoB,0BAA2B;AAC7D,cAAc,8BAA8B,oCAAqC;AAEjF,OAAO,iBAAS,qBACdA,cAAc,eACb","names":["monitorStore: MonitorStore"],"sources":["../../../src/hooks/useComponentRegistry.ts"],"version":3,"file":"useComponentRegistry.d.ts"}
@@ -0,0 +1,7 @@
1
+ import type { ComputeStore } from "../store/ComputeStore.js";
2
+ import type { ComputeMetrics, ComputeRequest, RecordingEvent } from "../types/compute.js";
3
+ export declare function useComputeMetrics(store: ComputeStore): ComputeMetrics;
4
+ export declare function useComputeRequests(store: ComputeStore): ReadonlyArray<ComputeRequest>;
5
+ export declare function useComputeRecording(store: ComputeStore): boolean;
6
+ export declare function useComputeNetworkPaused(store: ComputeStore): boolean;
7
+ export declare function useComputeLastRecordingEvent(store: ComputeStore): RecordingEvent | undefined;
@@ -0,0 +1 @@
1
+ {"mappings":"AAiBA,cAAc,oBAAoB,0BAA2B;AAC7D,cACE,gBACA,gBACA,sBACK,qBAAsB;AAE7B,OAAO,iBAAS,kBAAkBA,OAAO,eAAe;AASxD,OAAO,iBAAS,mBACdA,OAAO,eACN,cAAc;AASjB,OAAO,iBAAS,oBAAoBA,OAAO;AAW3C,OAAO,iBAAS,wBAAwBA,OAAO;AAY/C,OAAO,iBAAS,6BACdA,OAAO,eACN","names":["store: ComputeStore"],"sources":["../../../src/hooks/useComputeSelectors.ts"],"version":3,"file":"useComputeSelectors.d.ts"}
@@ -0,0 +1,7 @@
1
+ import type { ConsoleLogEntry } from "../store/ConsoleLogStore.js";
2
+ import type { MonitorStore } from "../store/MonitorStore.js";
3
+ export declare function useConsoleLogs(monitorStore: MonitorStore): {
4
+ entries: readonly ConsoleLogEntry[]
5
+ count: number
6
+ clear: () => void
7
+ };
@@ -0,0 +1 @@
1
+ {"mappings":"AAiBA,cAAc,uBAAuB,6BAA8B;AACnE,cAAc,oBAAoB,0BAA2B;AAO7D,OAAO,iBAAS,eAAeA,cAAc,eAAe;CAC1D,kBAAkB;CAClB;CACA;AACD","names":["monitorStore: MonitorStore"],"sources":["../../../src/hooks/useConsoleLogs.ts"],"version":3,"file":"useConsoleLogs.d.ts"}
@@ -0,0 +1,9 @@
1
+ import type { MonitorStore } from "../store/MonitorStore.js";
2
+ import type { DiscoveredPrimitives } from "../utils/ComponentPrimitiveDiscovery.js";
3
+ export interface InspectorSelectionState {
4
+ isSelectionActive: boolean;
5
+ discoveredPrimitives: DiscoveredPrimitives | null;
6
+ activateSelection: () => void;
7
+ clearDiscoveredPrimitives: () => void;
8
+ }
9
+ export declare function useInspectorSelection(monitorStore: MonitorStore): InspectorSelectionState;
@@ -0,0 +1 @@
1
+ {"mappings":"AAiBA,cAAc,oBAAoB,0BAA2B;AAC7D,cAAc,4BAA4B,yCAA0C;AAEpF,iBAAiB,wBAAwB;CACvC;CACA,sBAAsB;CACtB;CACA;AACD;AA0FD,OAAO,iBAAS,sBACdA,cAAc,eACb","names":["monitorStore: MonitorStore"],"sources":["../../../src/hooks/useInspectorSelection.ts"],"version":3,"file":"useInspectorSelection.d.ts"}
@@ -0,0 +1,3 @@
1
+ import type { MetricsStore } from "../store/MetricsStore.js";
2
+ import type { MetricsSnapshot } from "../types/index.js";
3
+ export declare function useMetrics(store: MetricsStore): MetricsSnapshot;
@@ -0,0 +1 @@
1
+ {"mappings":"AAiBA,cAAc,oBAAoB,0BAA2B;AAC7D,cAAc,uBAAuB,mBAAoB;AAEzD,OAAO,iBAAS,WAAWA,OAAO,eAAe","names":["store: MetricsStore"],"sources":["../../../src/hooks/useMetrics.ts"],"version":3,"file":"useMetrics.d.ts"}
@@ -0,0 +1 @@
1
+ export declare function usePersistedState<T>(key: string, defaultValue: T): [T, (value: T | ((prev: T) => T)) => void];
@@ -0,0 +1 @@
1
+ {"mappings":"AA+BA,OAAO,iBAAS,kBAAkB,GAChCA,aACAC,cAAc,KACZ,IAAIC,OAAO,MAAMC,MAAM,MAAM","names":["key: string","defaultValue: T","value: T | ((prev: T) => T)","prev: T"],"sources":["../../../src/hooks/usePersistedState.ts"],"version":3,"file":"usePersistedState.d.ts"}
@@ -0,0 +1,10 @@
1
+ import type { MonitorStore } from "../store/MonitorStore.js";
2
+ import type { Recommendation } from "../utils/PerformanceRecommendationEngine.js";
3
+ export interface RecommendationsState {
4
+ recommendations: Recommendation[];
5
+ isLoading: boolean;
6
+ error: Error | null;
7
+ refresh: () => void;
8
+ dismiss: (id: string) => void;
9
+ }
10
+ export declare function useRecommendations(monitorStore: MonitorStore): RecommendationsState;
@@ -0,0 +1 @@
1
+ {"mappings":"AAiBA,cAAc,oBAAoB,0BAA2B;AAC7D,cAAc,sBAAsB,6CAA8C;AAElF,iBAAiB,qBAAqB;CACpC,iBAAiB;CACjB;CACA,OAAO;CACP;CACA,UAAUA;AACX;AAiGD,OAAO,iBAAS,mBACdC,cAAc,eACb","names":["id: string","monitorStore: MonitorStore"],"sources":["../../../src/hooks/useRecommendations.ts"],"version":3,"file":"useRecommendations.d.ts"}
@@ -0,0 +1 @@
1
+ export declare function useSharedTick(): number;
@@ -0,0 +1 @@
1
+ {"mappings":"AAmDA,OAAO,iBAAS","names":[],"sources":["../../../src/hooks/useSharedTick.ts"],"version":3,"file":"useSharedTick.d.ts"}
@@ -0,0 +1 @@
1
+ export declare function useTimeElapsed(startTime: Date | undefined): number | undefined;
@@ -0,0 +1 @@
1
+ {"mappings":"AAkBA,OAAO,iBAAS,eACdA,WAAW","names":["startTime: Date | undefined"],"sources":["../../../src/hooks/useTimeElapsed.ts"],"version":3,"file":"useTimeElapsed.d.ts"}
@@ -0,0 +1,16 @@
1
+ interface Subscribable {
2
+ subscribe(cb: () => void): () => void;
3
+ }
4
+ export interface TrackerSubscriptionOptions {
5
+ autoRefresh?: boolean;
6
+ refreshInterval?: number;
7
+ limit?: number;
8
+ }
9
+ export declare function useTrackerSubscription<
10
+ TTracker extends Subscribable,
11
+ TData
12
+ >(tracker: TTracker | null, getData: (tracker: TTracker, limit: number) => TData, emptyData: TData, options?: TrackerSubscriptionOptions): {
13
+ data: TData
14
+ refresh: () => void
15
+ };
16
+ export {};
@@ -0,0 +1 @@
1
+ {"mappings":"UAkBU,aAAa;CACrB,UAAUA;AACX;AAED,iBAAiB,2BAA2B;CAC1C;CACA;CACA;AACD;AAED,OAAO,iBAAS;CAAuB,iBAAiB;CAAc;EACpEC,SAAS,iBACTC,UAAUC,SAAS,UAAUC,kBAAkB,OAC/CC,WAAW,OACXC,UAAS,6BACR;CAAE,MAAM;CAAO;AAAqB","names":["cb: () => void","tracker: TTracker | null","getData: (tracker: TTracker, limit: number) => TData","tracker: TTracker","limit: number","emptyData: TData","options: TrackerSubscriptionOptions"],"sources":["../../../src/hooks/useTrackerSubscription.ts"],"version":3,"file":"useTrackerSubscription.d.ts"}
@@ -0,0 +1,8 @@
1
+ import type { MonitorStore } from "../store/MonitorStore.js";
2
+ import { type UnusedFieldReport } from "../utils/UnusedFieldAnalyzer.js";
3
+ export interface UnusedFieldAnalysisState {
4
+ report: UnusedFieldReport | null;
5
+ isLoading: boolean;
6
+ error: Error | null;
7
+ }
8
+ export declare function useUnusedFieldAnalysis(monitorStore: MonitorStore, updateIntervalMs?: number): UnusedFieldAnalysisState;
@@ -0,0 +1 @@
1
+ {"mappings":"AAiBA,cAAc,oBAAoB,0BAA2B;AAC7D,cAEO,yBACA,iCAAkC;AAEzC,iBAAiB,yBAAyB;CACxC,QAAQ;CACR;CACA,OAAO;AACR;AAsFD,OAAO,iBAAS,uBACdA,cAAc,cACdC,4BACC","names":["monitorStore: MonitorStore","updateIntervalMs: number"],"sources":["../../../src/hooks/useUnusedFieldAnalysis.ts"],"version":3,"file":"useUnusedFieldAnalysis.d.ts"}
@@ -0,0 +1,21 @@
1
+ import "./register.js";
2
+ import "./styles.js";
3
+ export { BubbleChart } from "./components/BubbleChart.js";
4
+ export { MonitorErrorBoundary } from "./components/MonitorErrorBoundary.js";
5
+ export type { MonitorErrorBoundaryProps } from "./components/MonitorErrorBoundary.js";
6
+ export { MonitoringPanel, SafeMonitoringPanel } from "./components/MonitoringPanel.js";
7
+ export type { MonitoringPanelProps } from "./components/MonitoringPanel.js";
8
+ export { OsdkAppErrorBoundary } from "./components/OsdkAppErrorBoundary.js";
9
+ export type { OsdkAppErrorBoundaryProps } from "./components/OsdkAppErrorBoundary.js";
10
+ export { OsdkDevTools } from "./components/OsdkDevTools.js";
11
+ export { useComputeMetrics, useComputeRecording, useComputeRequests } from "./hooks/useComputeSelectors.js";
12
+ export { useMetrics } from "./hooks/useMetrics.js";
13
+ export { usePersistedState } from "./hooks/usePersistedState.js";
14
+ export type { Fiber } from "./fiber/types.js";
15
+ export { ComputeStore } from "./store/ComputeStore.js";
16
+ export { MonitorStore } from "./store/MonitorStore.js";
17
+ export { componentContextCapture } from "./utils/ComponentContextCapture.js";
18
+ export type { ComponentContext, ComponentContextCapture } from "./utils/ComponentContextCapture.js";
19
+ export type { ComponentQueryRegistry } from "./utils/ComponentQueryRegistry.js";
20
+ export { ComputeMonitor } from "./utils/ComputeMonitor.js";
21
+ export type { AggregateMetrics, MetricRates, MetricsSnapshot, Operation, OperationMetadata, OperationType, PanelPosition, TimeSeriesData } from "./types/index.js";
@@ -0,0 +1 @@
1
+ {"mappings":"AAgBA,OAAO,eAAgB;AACvB,OAAO,aAAc;AAErB,SAAS,mBAAmB;AAC5B,SAAS,4BAA4B;AACrC,cAAc,iCAAiC;AAC/C,SACE,iBACA,2BACK;AACP,cAAc,4BAA4B;AAC1C,SAAS,4BAA4B;AACrC,cAAc,iCAAiC;AAC/C,SAAS,oBAAoB;AAE7B,SACE,mBACA,qBACA,0BACK;AACP,SAAS,kBAAkB;AAC3B,SAAS,yBAAyB;AAElC,cAAc,aAAa;AAC3B,SAAS,oBAAoB;AAC7B,SAAS,oBAAoB;AAC7B,SAAS,+BAA+B;AACxC,cACE,kBACA,+BACK;AACP,cAAc,8BAA8B;AAC5C,SAAS,sBAAsB;AAE/B,cACE,kBACA,aACA,iBACA,WACA,mBACA,eACA,eACA,sBACK","names":[],"sources":["../../src/index.ts"],"version":3,"file":"index.d.ts"}
@@ -0,0 +1,40 @@
1
+ import type { InspectedComponent } from "./types.js";
2
+ export interface ClickToInspectOptions {
3
+ containerElement?: HTMLElement;
4
+ renderTarget?: HTMLElement;
5
+ onSelect?: (component: InspectedComponent) => void;
6
+ onActivate?: () => void;
7
+ onDeactivate?: () => void;
8
+ }
9
+ export interface InspectorState {
10
+ active: boolean;
11
+ hoveredElement: HTMLElement | null;
12
+ hoveredComponentId: string | null;
13
+ selectedComponentId: string | null;
14
+ }
15
+ export declare class ClickToInspectSystem {
16
+ private state;
17
+ private readonly options;
18
+ private inspectorController;
19
+ private bannerContainer;
20
+ private bannerRoot;
21
+ private overlayContainer;
22
+ private overlayRoot;
23
+ private stateUnsubscribe;
24
+ private eventHandlers;
25
+ constructor(options?: ClickToInspectOptions);
26
+ activate(): void;
27
+ private showOverlay;
28
+ private renderOverlay;
29
+ private hideOverlay;
30
+ private showBanner;
31
+ private hideBanner;
32
+ private handleComponentSelected;
33
+ deactivate(): void;
34
+ toggle(): void;
35
+ private setupKeyboardShortcuts;
36
+ private clearHover;
37
+ private setCursor;
38
+ dispose(): void;
39
+ getState(): InspectorState;
40
+ }
@@ -0,0 +1 @@
1
+ {"mappings":"AAqBA,cACE,0BAGK,YAAa;AAEpB,iBAAiB,sBAAsB;CACrC,mBAAmB;CACnB,eAAe;CACf,YAAYA,WAAW;CACvB;CACA;AACD;AAED,iBAAiB,eAAe;CAC9B;CACA,gBAAgB;CAChB;CACA;AACD;AAED,OAAO,cAAM,qBAAqB;CAChC,QAAQ;CAOR,iBAAiB;CACjB,QAAQ;CACR,QAAQ;CACR,QAAQ;CACR,QAAQ;CACR,QAAQ;CACR,QAAQ;CACR,QAAQ;CAKR,YAAYC,UAAS;CAKrB;CAoCA,QAAQ;CAsBR,QAAQ;CAYR,QAAQ;CA2BR,QAAQ;CAeR,QAAQ;CAQR,QAAQ;CAMR;CAqBA;CAQA,QAAQ;CA8BR,QAAQ;CAKR,QAAQ;CAIR;CA2BA,YAAY;AAGb","names":["component: InspectedComponent","options: ClickToInspectOptions"],"sources":["../../../src/inspector/ClickToInspectSystem.ts"],"version":3,"file":"ClickToInspectSystem.d.ts"}
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ import type { ComponentLabelProps } from "../types.js";
3
+ export declare function ComponentLabel({ component, bounds, mouseX, mouseY, status, onOpenSource, visible }: ComponentLabelProps): React.ReactElement | null;
@@ -0,0 +1 @@
1
+ {"mappings":"AAgBA,OAAO,WAA8C,OAAQ;AAE7D,cAAc,2BAA0C,aAAc;AAoDtE,OAAO,iBAAS,eAAe,EAC7B,WACA,QACA,QACA,QACA,QACA,cACA,SACoB,EAAnB,sBAAsB,MAAM","names":[],"sources":["../../../../src/inspector/components/ComponentLabel.tsx"],"version":3,"file":"ComponentLabel.d.ts"}
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ export interface InspectorBannerProps {
3
+ visible: boolean;
4
+ }
5
+ export declare const InspectorBanner: React.FC<InspectorBannerProps>;
@@ -0,0 +1 @@
1
+ {"mappings":"AAgBA,OAAO,WAAW,OAAQ;AAE1B,iBAAiB,qBAAqB;CACpC;AACD;AAwCD,OAAO,cAAMA,iBAAiB,MAAM,GAAG","names":["InspectorBanner: React.FC<InspectorBannerProps>"],"sources":["../../../../src/inspector/components/InspectorBanner.tsx"],"version":3,"file":"InspectorBanner.d.ts"}
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ import type { InspectorOverlayProps } from "../types.js";
3
+ export declare function InspectorOverlay({ state, eventHandlers, animationOptions, zIndex }: InspectorOverlayProps): React.ReactElement | null;
@@ -0,0 +1 @@
1
+ {"mappings":"AAgBA,OAAO,WAA6C,OAAQ;AAE5D,cAAc,6BAA4C,aAAc;AA2GxE,OAAO,iBAAS,iBAAiB,EAC/B,OACA,eACA,kBACA,QACsB,EAArB,wBAAwB,MAAM","names":[],"sources":["../../../../src/inspector/components/InspectorOverlay.tsx"],"version":3,"file":"InspectorOverlay.d.ts"}
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ import type { SelectionHighlightProps } from "../types.js";
3
+ export declare function SelectionHighlight({ bounds, variant, animationOptions, visible }: SelectionHighlightProps): React.ReactElement | null;
@@ -0,0 +1 @@
1
+ {"mappings":"AAgBA,OAAO,WAAW,OAAQ;AAE1B,cAAgC,+BAA+B,aAAc;AA2B7E,OAAO,iBAAS,mBAAmB,EACjC,QACA,SACA,kBACA,SACwB,EAAvB,0BAA0B,MAAM","names":[],"sources":["../../../../src/inspector/components/SelectionHighlight.tsx"],"version":3,"file":"SelectionHighlight.d.ts"}
@@ -0,0 +1,3 @@
1
+ import { type ClickToInspectOptions, ClickToInspectSystem } from "./ClickToInspectSystem.js";
2
+ export type { ClickToInspectOptions } from "./ClickToInspectSystem.js";
3
+ export declare function createClickToInspect(options?: ClickToInspectOptions): ClickToInspectSystem;
@@ -0,0 +1 @@
1
+ {"mappings":"AAgBA,cACO,uBACL,4BACK,2BAA4B;AAEnC,cAAc,6BAA6B;AAE3C,OAAO,iBAAS,qBACdA,UAAS,wBACR","names":["options: ClickToInspectOptions"],"sources":["../../../src/inspector/createClickToInspect.ts"],"version":3,"file":"createClickToInspect.d.ts"}
@@ -0,0 +1,2 @@
1
+ import type { AnimatedBounds, AnimationOptions, OverlayBounds } from "../types.js";
2
+ export declare function useAnimatedBounds(targetBounds: OverlayBounds | null, options?: AnimationOptions): AnimatedBounds | null;
@@ -0,0 +1 @@
1
+ {"mappings":"AAiBA,cACE,gBACA,kBACA,qBACK,aAAc;AA8JrB,OAAO,iBAAS,kBACdA,cAAc,sBACdC,UAAS,mBACR","names":["targetBounds: OverlayBounds | null","options: AnimationOptions"],"sources":["../../../../src/inspector/hooks/useAnimatedBounds.ts"],"version":3,"file":"useAnimatedBounds.d.ts"}
@@ -0,0 +1,13 @@
1
+ export type { AnimatedBounds, AnimationOptions, ComponentLabelProps, HighlightVariant, InspectedComponent, InspectorController, InspectorEventHandlers, InspectorMode, InspectorOptions, InspectorOverlayProps, InspectorState, LabelPosition, OverlayBounds, SelectionHighlightProps, SelectionLabelStatus } from "./types.js";
2
+ export { ComponentLabel } from "./components/ComponentLabel.js";
3
+ export { InspectorBanner } from "./components/InspectorBanner.js";
4
+ export { InspectorOverlay } from "./components/InspectorOverlay.js";
5
+ export { SelectionHighlight } from "./components/SelectionHighlight.js";
6
+ export { useAnimatedBounds } from "./hooks/useAnimatedBounds.js";
7
+ export { createInspectorController } from "./inspectorController.js";
8
+ export { ClickToInspectSystem } from "./ClickToInspectSystem.js";
9
+ export type { ClickToInspectOptions } from "./ClickToInspectSystem.js";
10
+ export { createClickToInspect } from "./createClickToInspect.js";
11
+ export { createElementBounds, getElementAtPosition } from "./utils/elementBounds.js";
12
+ export { DEFAULT_CONVERGENCE_THRESHOLD, interpolate, INTERPOLATION_FACTORS } from "./utils/interpolation.js";
13
+ export { computeLabelPosition, OFFSCREEN_POSITION } from "./utils/labelPositioning.js";
@@ -0,0 +1 @@
1
+ {"mappings":"AAiBA,cACE,gBACA,kBACA,qBACA,kBACA,oBACA,qBACA,wBACA,eACA,kBACA,uBACA,gBACA,eACA,eACA,yBACA,4BACK;AAGP,SAAS,sBAAsB;AAC/B,SAAS,uBAAuB;AAChC,SAAS,wBAAwB;AACjC,SAAS,0BAA0B;AAGnC,SAAS,yBAAyB;AAGlC,SAAS,iCAAiC;AAG1C,SAAS,4BAA4B;AACrC,cAAc,6BAA6B;AAG3C,SAAS,4BAA4B;AAGrC,SACE,qBACA,4BACK;AACP,SACE,+BACA,aACA,6BACK;AACP,SACE,sBACA,0BACK","names":[],"sources":["../../../src/inspector/index.ts"],"version":3,"file":"index.d.ts"}
@@ -0,0 +1,2 @@
1
+ import type { InspectorController, InspectorOptions } from "./types.js";
2
+ export declare function createInspectorController(options?: InspectorOptions): InspectorController;
@@ -0,0 +1 @@
1
+ {"mappings":"AA0BA,cAEE,qBACA,wBAEK,YAAa;AAiDpB,OAAO,iBAAS,0BACdA,UAAS,mBACR","names":["options: InspectorOptions"],"sources":["../../../src/inspector/inspectorController.ts"],"version":3,"file":"inspectorController.d.ts"}