@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.
- package/CHANGELOG.md +79 -0
- package/build/esm/DevToolsContext.js +19 -0
- package/build/esm/DevToolsContext.js.map +1 -0
- package/build/esm/components/ActionMetrics.js +89 -0
- package/build/esm/components/ActionMetrics.js.map +1 -0
- package/build/esm/components/BubbleChart.js +175 -0
- package/build/esm/components/BubbleChart.js.map +1 -0
- package/build/esm/components/BubbleChart.module.scss.js +6 -0
- package/build/esm/components/CacheInspectorTab.js +291 -0
- package/build/esm/components/CacheInspectorTab.js.map +1 -0
- package/build/esm/components/CacheInspectorTab.module.scss.js +39 -0
- package/build/esm/components/CacheMetrics.js +55 -0
- package/build/esm/components/CacheMetrics.js.map +1 -0
- package/build/esm/components/ComponentCard.js +124 -0
- package/build/esm/components/ComponentCard.js.map +1 -0
- package/build/esm/components/ComponentCard.module.scss.js +31 -0
- package/build/esm/components/ComputeTab.js +175 -0
- package/build/esm/components/ComputeTab.js.map +1 -0
- package/build/esm/components/CopyableCodeBlock.js +49 -0
- package/build/esm/components/CopyableCodeBlock.js.map +1 -0
- package/build/esm/components/CopyableCodeBlock.module.scss.js +10 -0
- package/build/esm/components/DebuggingTab.js +342 -0
- package/build/esm/components/DebuggingTab.js.map +1 -0
- package/build/esm/components/DebuggingTab.module.scss.js +18 -0
- package/build/esm/components/HookRow.js +180 -0
- package/build/esm/components/HookRow.js.map +1 -0
- package/build/esm/components/HookRow.module.scss.js +16 -0
- package/build/esm/components/ImprovementsTab.js +138 -0
- package/build/esm/components/ImprovementsTab.js.map +1 -0
- package/build/esm/components/ImprovementsTab.module.scss.js +30 -0
- package/build/esm/components/InspectorSelectionHeader.js +65 -0
- package/build/esm/components/InspectorSelectionHeader.js.map +1 -0
- package/build/esm/components/InterceptTab.js +862 -0
- package/build/esm/components/InterceptTab.js.map +1 -0
- package/build/esm/components/InterceptTab.module.scss.js +49 -0
- package/build/esm/components/IssueCard.js +115 -0
- package/build/esm/components/IssueCard.js.map +1 -0
- package/build/esm/components/IssueCard.module.scss.js +24 -0
- package/build/esm/components/LogEntryCard.js +94 -0
- package/build/esm/components/LogEntryCard.js.map +1 -0
- package/build/esm/components/LogEntryCard.module.scss.js +19 -0
- package/build/esm/components/MockEditor.js +316 -0
- package/build/esm/components/MockEditor.js.map +1 -0
- package/build/esm/components/MonitorErrorBoundary.js +64 -0
- package/build/esm/components/MonitorErrorBoundary.js.map +1 -0
- package/build/esm/components/MonitorErrorBoundary.module.scss.js +9 -0
- package/build/esm/components/MonitoringPanel.js +434 -0
- package/build/esm/components/MonitoringPanel.js.map +1 -0
- package/build/esm/components/MonitoringPanel.module.scss.js +81 -0
- package/build/esm/components/ObjectLoadingMetrics.js +60 -0
- package/build/esm/components/ObjectLoadingMetrics.js.map +1 -0
- package/build/esm/components/OsdkAppErrorBoundary.js +68 -0
- package/build/esm/components/OsdkAppErrorBoundary.js.map +1 -0
- package/build/esm/components/OsdkDevTools.js +40 -0
- package/build/esm/components/OsdkDevTools.js.map +1 -0
- package/build/esm/components/OverrideEditor.js +197 -0
- package/build/esm/components/OverrideEditor.js.map +1 -0
- package/build/esm/components/PerformanceTab.js +297 -0
- package/build/esm/components/PerformanceTab.js.map +1 -0
- package/build/esm/components/PrimitiveSelectionPanel.js +220 -0
- package/build/esm/components/PrimitiveSelectionPanel.js.map +1 -0
- package/build/esm/components/PrimitiveSelectionPanel.module.scss.js +26 -0
- package/build/esm/components/issueTypes.js +2 -0
- package/build/esm/components/issueTypes.js.map +1 -0
- package/build/esm/components/resolveComponentName.js +57 -0
- package/build/esm/components/resolveComponentName.js.map +1 -0
- package/build/esm/components/testHelpers.js +312 -0
- package/build/esm/components/testHelpers.js.map +1 -0
- package/build/esm/css.d.ts +20 -0
- package/build/esm/fiber/DegradationNotice.js +193 -0
- package/build/esm/fiber/DegradationNotice.js.map +1 -0
- package/build/esm/fiber/DevtoolsHook.js +252 -0
- package/build/esm/fiber/DevtoolsHook.js.map +1 -0
- package/build/esm/fiber/FiberAccess.js +65 -0
- package/build/esm/fiber/FiberAccess.js.map +1 -0
- package/build/esm/fiber/FiberInspection.js +140 -0
- package/build/esm/fiber/FiberInspection.js.map +1 -0
- package/build/esm/fiber/FiberTags.js +52 -0
- package/build/esm/fiber/FiberTags.js.map +1 -0
- package/build/esm/fiber/HookStateInspector.js +254 -0
- package/build/esm/fiber/HookStateInspector.js.map +1 -0
- package/build/esm/fiber/SafeFiberOperation.js +35 -0
- package/build/esm/fiber/SafeFiberOperation.js.map +1 -0
- package/build/esm/fiber/capabilities.js +180 -0
- package/build/esm/fiber/capabilities.js.map +1 -0
- package/build/esm/fiber/traverseFiber.js +129 -0
- package/build/esm/fiber/traverseFiber.js.map +1 -0
- package/build/esm/fiber/types.js +2 -0
- package/build/esm/fiber/types.js.map +1 -0
- package/build/esm/fiber/validation.js +155 -0
- package/build/esm/fiber/validation.js.map +1 -0
- package/build/esm/hooks/createPollingStore.js +81 -0
- package/build/esm/hooks/createPollingStore.js.map +1 -0
- package/build/esm/hooks/useActiveComponents.js +27 -0
- package/build/esm/hooks/useActiveComponents.js.map +1 -0
- package/build/esm/hooks/useComponentRegistry.js +25 -0
- package/build/esm/hooks/useComponentRegistry.js.map +1 -0
- package/build/esm/hooks/useComputeSelectors.js +43 -0
- package/build/esm/hooks/useComputeSelectors.js.map +1 -0
- package/build/esm/hooks/useConsoleLogs.js +46 -0
- package/build/esm/hooks/useConsoleLogs.js.map +1 -0
- package/build/esm/hooks/useInspectorSelection.js +93 -0
- package/build/esm/hooks/useInspectorSelection.js.map +1 -0
- package/build/esm/hooks/useMetrics.js +23 -0
- package/build/esm/hooks/useMetrics.js.map +1 -0
- package/build/esm/hooks/usePersistedState.js +89 -0
- package/build/esm/hooks/usePersistedState.js.map +1 -0
- package/build/esm/hooks/useRecommendations.js +123 -0
- package/build/esm/hooks/useRecommendations.js.map +1 -0
- package/build/esm/hooks/useSharedTick.js +49 -0
- package/build/esm/hooks/useSharedTick.js.map +1 -0
- package/build/esm/hooks/useTimeElapsed.js +51 -0
- package/build/esm/hooks/useTimeElapsed.js.map +1 -0
- package/build/esm/hooks/useTrackerSubscription.js +97 -0
- package/build/esm/hooks/useTrackerSubscription.js.map +1 -0
- package/build/esm/hooks/useUnusedFieldAnalysis.js +99 -0
- package/build/esm/hooks/useUnusedFieldAnalysis.js.map +1 -0
- package/build/esm/index.js +31 -0
- package/build/esm/index.js.map +1 -0
- package/build/esm/inspector/ClickToInspectSystem.js +228 -0
- package/build/esm/inspector/ClickToInspectSystem.js.map +1 -0
- package/build/esm/inspector/components/ComponentLabel.js +175 -0
- package/build/esm/inspector/components/ComponentLabel.js.map +1 -0
- package/build/esm/inspector/components/ComponentLabel.module.scss.js +12 -0
- package/build/esm/inspector/components/InspectorBanner.js +79 -0
- package/build/esm/inspector/components/InspectorBanner.js.map +1 -0
- package/build/esm/inspector/components/InspectorOverlay.js +149 -0
- package/build/esm/inspector/components/InspectorOverlay.js.map +1 -0
- package/build/esm/inspector/components/SelectionHighlight.js +74 -0
- package/build/esm/inspector/components/SelectionHighlight.js.map +1 -0
- package/build/esm/inspector/createClickToInspect.js +21 -0
- package/build/esm/inspector/createClickToInspect.js.map +1 -0
- package/build/esm/inspector/hooks/useAnimatedBounds.js +167 -0
- package/build/esm/inspector/hooks/useAnimatedBounds.js.map +1 -0
- package/build/esm/inspector/index.js +40 -0
- package/build/esm/inspector/index.js.map +1 -0
- package/build/esm/inspector/inspectorController.js +328 -0
- package/build/esm/inspector/inspectorController.js.map +1 -0
- package/build/esm/inspector/types.js +2 -0
- package/build/esm/inspector/types.js.map +1 -0
- package/build/esm/inspector/utils/elementBounds.js +72 -0
- package/build/esm/inspector/utils/elementBounds.js.map +1 -0
- package/build/esm/inspector/utils/interpolation.js +26 -0
- package/build/esm/inspector/utils/interpolation.js.map +1 -0
- package/build/esm/inspector/utils/labelPositioning.js +62 -0
- package/build/esm/inspector/utils/labelPositioning.js.map +1 -0
- package/build/esm/mocking/MockCacheKeyGenerator.js +109 -0
- package/build/esm/mocking/MockCacheKeyGenerator.js.map +1 -0
- package/build/esm/mocking/MockManager.js +281 -0
- package/build/esm/mocking/MockManager.js.map +1 -0
- package/build/esm/prototyping/PrototypeOverrideStore.js +66 -0
- package/build/esm/prototyping/PrototypeOverrideStore.js.map +1 -0
- package/build/esm/prototyping/index.js +18 -0
- package/build/esm/prototyping/index.js.map +1 -0
- package/build/esm/public/vite.js +19 -0
- package/build/esm/public/vite.js.map +1 -0
- package/build/esm/register.js +41 -0
- package/build/esm/register.js.map +1 -0
- package/build/esm/scss.d.ts +20 -0
- package/build/esm/store/ComputeStore.js +269 -0
- package/build/esm/store/ComputeStore.js.map +1 -0
- package/build/esm/store/ConsoleLogStore.js +289 -0
- package/build/esm/store/ConsoleLogStore.js.map +1 -0
- package/build/esm/store/MetricsStore.js +428 -0
- package/build/esm/store/MetricsStore.js.map +1 -0
- package/build/esm/store/MonitorStore.js +288 -0
- package/build/esm/store/MonitorStore.js.map +1 -0
- package/build/esm/store/SubscribableStore.js +38 -0
- package/build/esm/store/SubscribableStore.js.map +1 -0
- package/build/esm/store/WindowErrorStore.js +195 -0
- package/build/esm/store/WindowErrorStore.js.map +1 -0
- package/build/esm/styles.css +19441 -0
- package/build/esm/styles.js +31 -0
- package/build/esm/styles.js.map +1 -0
- package/build/esm/types/compute.js +2 -0
- package/build/esm/types/compute.js.map +1 -0
- package/build/esm/types/emissions.js +2 -0
- package/build/esm/types/emissions.js.map +1 -0
- package/build/esm/types/index.js +23 -0
- package/build/esm/types/index.js.map +1 -0
- package/build/esm/utils/ActionLifecycleTracker.js +178 -0
- package/build/esm/utils/ActionLifecycleTracker.js.map +1 -0
- package/build/esm/utils/CacheEfficiencyAnalyzer.js +198 -0
- package/build/esm/utils/CacheEfficiencyAnalyzer.js.map +1 -0
- package/build/esm/utils/CircularBuffer.js +96 -0
- package/build/esm/utils/CircularBuffer.js.map +1 -0
- package/build/esm/utils/ComponentContextCapture.js +215 -0
- package/build/esm/utils/ComponentContextCapture.js.map +1 -0
- package/build/esm/utils/ComponentPrimitiveDiscovery.js +173 -0
- package/build/esm/utils/ComponentPrimitiveDiscovery.js.map +1 -0
- package/build/esm/utils/ComponentQueryRegistry.js +340 -0
- package/build/esm/utils/ComponentQueryRegistry.js.map +1 -0
- package/build/esm/utils/ComputeMonitor.js +199 -0
- package/build/esm/utils/ComputeMonitor.js.map +1 -0
- package/build/esm/utils/EventTimeline.js +130 -0
- package/build/esm/utils/EventTimeline.js.map +1 -0
- package/build/esm/utils/LinkTraversalTracker.js +116 -0
- package/build/esm/utils/LinkTraversalTracker.js.map +1 -0
- package/build/esm/utils/MockDataGenerator.js +473 -0
- package/build/esm/utils/MockDataGenerator.js.map +1 -0
- package/build/esm/utils/ObservableClientMonitor.js +768 -0
- package/build/esm/utils/ObservableClientMonitor.js.map +1 -0
- package/build/esm/utils/PerformanceRecommendationEngine.js +185 -0
- package/build/esm/utils/PerformanceRecommendationEngine.js.map +1 -0
- package/build/esm/utils/PropertyAccessTracker.js +238 -0
- package/build/esm/utils/PropertyAccessTracker.js.map +1 -0
- package/build/esm/utils/RecommendationMatcher.js +53 -0
- package/build/esm/utils/RecommendationMatcher.js.map +1 -0
- package/build/esm/utils/SubscriptionTracker.js +132 -0
- package/build/esm/utils/SubscriptionTracker.js.map +1 -0
- package/build/esm/utils/UnusedFieldAnalyzer.js +186 -0
- package/build/esm/utils/UnusedFieldAnalyzer.js.map +1 -0
- package/build/esm/utils/WaterfallDetector.js +200 -0
- package/build/esm/utils/WaterfallDetector.js.map +1 -0
- package/build/esm/utils/computePayload.js +37 -0
- package/build/esm/utils/computePayload.js.map +1 -0
- package/build/esm/utils/computeRequest.js +29 -0
- package/build/esm/utils/computeRequest.js.map +1 -0
- package/build/esm/utils/format.js +69 -0
- package/build/esm/utils/format.js.map +1 -0
- package/build/esm/utils/logger.js +31 -0
- package/build/esm/utils/logger.js.map +1 -0
- package/build/esm/vite/constants.js +18 -0
- package/build/esm/vite/constants.js.map +1 -0
- package/build/esm/vite/hookInstaller.js +99 -0
- package/build/esm/vite/hookInstaller.js.map +1 -0
- package/build/esm/vite/index.js +77 -0
- package/build/esm/vite/index.js.map +1 -0
- package/build/types/DevToolsContext.d.ts +3 -0
- package/build/types/DevToolsContext.d.ts.map +1 -0
- package/build/types/components/ActionMetrics.d.ts +6 -0
- package/build/types/components/ActionMetrics.d.ts.map +1 -0
- package/build/types/components/BubbleChart.d.ts +10 -0
- package/build/types/components/BubbleChart.d.ts.map +1 -0
- package/build/types/components/CacheInspectorTab.d.ts +6 -0
- package/build/types/components/CacheInspectorTab.d.ts.map +1 -0
- package/build/types/components/CacheMetrics.d.ts +6 -0
- package/build/types/components/CacheMetrics.d.ts.map +1 -0
- package/build/types/components/ComponentCard.d.ts +13 -0
- package/build/types/components/ComponentCard.d.ts.map +1 -0
- package/build/types/components/ComputeTab.d.ts +6 -0
- package/build/types/components/ComputeTab.d.ts.map +1 -0
- package/build/types/components/CopyableCodeBlock.d.ts +7 -0
- package/build/types/components/CopyableCodeBlock.d.ts.map +1 -0
- package/build/types/components/DebuggingTab.d.ts +6 -0
- package/build/types/components/DebuggingTab.d.ts.map +1 -0
- package/build/types/components/HookRow.d.ts +9 -0
- package/build/types/components/HookRow.d.ts.map +1 -0
- package/build/types/components/ImprovementsTab.d.ts +7 -0
- package/build/types/components/ImprovementsTab.d.ts.map +1 -0
- package/build/types/components/InspectorSelectionHeader.d.ts +12 -0
- package/build/types/components/InspectorSelectionHeader.d.ts.map +1 -0
- package/build/types/components/InterceptTab.d.ts +126 -0
- package/build/types/components/InterceptTab.d.ts.map +1 -0
- package/build/types/components/IssueCard.d.ts +8 -0
- package/build/types/components/IssueCard.d.ts.map +1 -0
- package/build/types/components/LogEntryCard.d.ts +7 -0
- package/build/types/components/LogEntryCard.d.ts.map +1 -0
- package/build/types/components/MockEditor.d.ts +58 -0
- package/build/types/components/MockEditor.d.ts.map +1 -0
- package/build/types/components/MonitorErrorBoundary.d.ts +16 -0
- package/build/types/components/MonitorErrorBoundary.d.ts.map +1 -0
- package/build/types/components/MonitoringPanel.d.ts +8 -0
- package/build/types/components/MonitoringPanel.d.ts.map +1 -0
- package/build/types/components/ObjectLoadingMetrics.d.ts +7 -0
- package/build/types/components/ObjectLoadingMetrics.d.ts.map +1 -0
- package/build/types/components/OsdkAppErrorBoundary.d.ts +18 -0
- package/build/types/components/OsdkAppErrorBoundary.d.ts.map +1 -0
- package/build/types/components/OsdkDevTools.d.ts +2 -0
- package/build/types/components/OsdkDevTools.d.ts.map +1 -0
- package/build/types/components/OverrideEditor.d.ts +26 -0
- package/build/types/components/OverrideEditor.d.ts.map +1 -0
- package/build/types/components/PerformanceTab.d.ts +8 -0
- package/build/types/components/PerformanceTab.d.ts.map +1 -0
- package/build/types/components/PrimitiveSelectionPanel.d.ts +28 -0
- package/build/types/components/PrimitiveSelectionPanel.d.ts.map +1 -0
- package/build/types/components/issueTypes.d.ts +16 -0
- package/build/types/components/issueTypes.d.ts.map +1 -0
- package/build/types/components/resolveComponentName.d.ts +3 -0
- package/build/types/components/resolveComponentName.d.ts.map +1 -0
- package/build/types/components/testHelpers.d.ts +2 -0
- package/build/types/components/testHelpers.d.ts.map +1 -0
- package/build/types/css.d.d.ts +4 -0
- package/build/types/css.d.d.ts.map +1 -0
- package/build/types/fiber/DegradationNotice.d.ts +8 -0
- package/build/types/fiber/DegradationNotice.d.ts.map +1 -0
- package/build/types/fiber/DevtoolsHook.d.ts +7 -0
- package/build/types/fiber/DevtoolsHook.d.ts.map +1 -0
- package/build/types/fiber/FiberAccess.d.ts +2 -0
- package/build/types/fiber/FiberAccess.d.ts.map +1 -0
- package/build/types/fiber/FiberInspection.d.ts +6 -0
- package/build/types/fiber/FiberInspection.d.ts.map +1 -0
- package/build/types/fiber/FiberTags.d.ts +33 -0
- package/build/types/fiber/FiberTags.d.ts.map +1 -0
- package/build/types/fiber/HookStateInspector.d.ts +45 -0
- package/build/types/fiber/HookStateInspector.d.ts.map +1 -0
- package/build/types/fiber/SafeFiberOperation.d.ts +7 -0
- package/build/types/fiber/SafeFiberOperation.d.ts.map +1 -0
- package/build/types/fiber/capabilities.d.ts +38 -0
- package/build/types/fiber/capabilities.d.ts.map +1 -0
- package/build/types/fiber/traverseFiber.d.ts +5 -0
- package/build/types/fiber/traverseFiber.d.ts.map +1 -0
- package/build/types/fiber/types.d.ts +87 -0
- package/build/types/fiber/types.d.ts.map +1 -0
- package/build/types/fiber/validation.d.ts +10 -0
- package/build/types/fiber/validation.d.ts.map +1 -0
- package/build/types/hooks/createPollingStore.d.ts +5 -0
- package/build/types/hooks/createPollingStore.d.ts.map +1 -0
- package/build/types/hooks/useActiveComponents.d.ts +3 -0
- package/build/types/hooks/useActiveComponents.d.ts.map +1 -0
- package/build/types/hooks/useComponentRegistry.d.ts +3 -0
- package/build/types/hooks/useComponentRegistry.d.ts.map +1 -0
- package/build/types/hooks/useComputeSelectors.d.ts +7 -0
- package/build/types/hooks/useComputeSelectors.d.ts.map +1 -0
- package/build/types/hooks/useConsoleLogs.d.ts +7 -0
- package/build/types/hooks/useConsoleLogs.d.ts.map +1 -0
- package/build/types/hooks/useInspectorSelection.d.ts +9 -0
- package/build/types/hooks/useInspectorSelection.d.ts.map +1 -0
- package/build/types/hooks/useMetrics.d.ts +3 -0
- package/build/types/hooks/useMetrics.d.ts.map +1 -0
- package/build/types/hooks/usePersistedState.d.ts +1 -0
- package/build/types/hooks/usePersistedState.d.ts.map +1 -0
- package/build/types/hooks/useRecommendations.d.ts +10 -0
- package/build/types/hooks/useRecommendations.d.ts.map +1 -0
- package/build/types/hooks/useSharedTick.d.ts +1 -0
- package/build/types/hooks/useSharedTick.d.ts.map +1 -0
- package/build/types/hooks/useTimeElapsed.d.ts +1 -0
- package/build/types/hooks/useTimeElapsed.d.ts.map +1 -0
- package/build/types/hooks/useTrackerSubscription.d.ts +16 -0
- package/build/types/hooks/useTrackerSubscription.d.ts.map +1 -0
- package/build/types/hooks/useUnusedFieldAnalysis.d.ts +8 -0
- package/build/types/hooks/useUnusedFieldAnalysis.d.ts.map +1 -0
- package/build/types/index.d.ts +21 -0
- package/build/types/index.d.ts.map +1 -0
- package/build/types/inspector/ClickToInspectSystem.d.ts +40 -0
- package/build/types/inspector/ClickToInspectSystem.d.ts.map +1 -0
- package/build/types/inspector/components/ComponentLabel.d.ts +3 -0
- package/build/types/inspector/components/ComponentLabel.d.ts.map +1 -0
- package/build/types/inspector/components/InspectorBanner.d.ts +5 -0
- package/build/types/inspector/components/InspectorBanner.d.ts.map +1 -0
- package/build/types/inspector/components/InspectorOverlay.d.ts +3 -0
- package/build/types/inspector/components/InspectorOverlay.d.ts.map +1 -0
- package/build/types/inspector/components/SelectionHighlight.d.ts +3 -0
- package/build/types/inspector/components/SelectionHighlight.d.ts.map +1 -0
- package/build/types/inspector/createClickToInspect.d.ts +3 -0
- package/build/types/inspector/createClickToInspect.d.ts.map +1 -0
- package/build/types/inspector/hooks/useAnimatedBounds.d.ts +2 -0
- package/build/types/inspector/hooks/useAnimatedBounds.d.ts.map +1 -0
- package/build/types/inspector/index.d.ts +13 -0
- package/build/types/inspector/index.d.ts.map +1 -0
- package/build/types/inspector/inspectorController.d.ts +2 -0
- package/build/types/inspector/inspectorController.d.ts.map +1 -0
- package/build/types/inspector/types.d.ts +94 -0
- package/build/types/inspector/types.d.ts.map +1 -0
- package/build/types/inspector/utils/elementBounds.d.ts +3 -0
- package/build/types/inspector/utils/elementBounds.d.ts.map +1 -0
- package/build/types/inspector/utils/interpolation.d.ts +7 -0
- package/build/types/inspector/utils/interpolation.d.ts.map +1 -0
- package/build/types/inspector/utils/labelPositioning.d.ts +3 -0
- package/build/types/inspector/utils/labelPositioning.d.ts.map +1 -0
- package/build/types/mocking/MockCacheKeyGenerator.d.ts +41 -0
- package/build/types/mocking/MockCacheKeyGenerator.d.ts.map +1 -0
- package/build/types/mocking/MockManager.d.ts +103 -0
- package/build/types/mocking/MockManager.d.ts.map +1 -0
- package/build/types/prototyping/PrototypeOverrideStore.d.ts +33 -0
- package/build/types/prototyping/PrototypeOverrideStore.d.ts.map +1 -0
- package/build/types/prototyping/index.d.ts +1 -0
- package/build/types/prototyping/index.d.ts.map +1 -0
- package/build/types/public/vite.d.ts +2 -0
- package/build/types/public/vite.d.ts.map +1 -0
- package/build/types/register.d.ts +1 -0
- package/build/types/register.d.ts.map +1 -0
- package/build/types/scss.d.d.ts +6 -0
- package/build/types/scss.d.d.ts.map +1 -0
- package/build/types/store/ComputeStore.d.ts +47 -0
- package/build/types/store/ComputeStore.d.ts.map +1 -0
- package/build/types/store/ConsoleLogStore.d.ts +29 -0
- package/build/types/store/ConsoleLogStore.d.ts.map +1 -0
- package/build/types/store/MetricsStore.d.ts +42 -0
- package/build/types/store/MetricsStore.d.ts.map +1 -0
- package/build/types/store/MonitorStore.d.ts +86 -0
- package/build/types/store/MonitorStore.d.ts.map +1 -0
- package/build/types/store/SubscribableStore.d.ts +6 -0
- package/build/types/store/SubscribableStore.d.ts.map +1 -0
- package/build/types/store/WindowErrorStore.d.ts +32 -0
- package/build/types/store/WindowErrorStore.d.ts.map +1 -0
- package/build/types/styles.d.ts +1 -0
- package/build/types/styles.d.ts.map +1 -0
- package/build/types/types/compute.d.ts +73 -0
- package/build/types/types/compute.d.ts.map +1 -0
- package/build/types/types/emissions.d.ts +24 -0
- package/build/types/types/emissions.d.ts.map +1 -0
- package/build/types/types/index.d.ts +143 -0
- package/build/types/types/index.d.ts.map +1 -0
- package/build/types/utils/ActionLifecycleTracker.d.ts +39 -0
- package/build/types/utils/ActionLifecycleTracker.d.ts.map +1 -0
- package/build/types/utils/CacheEfficiencyAnalyzer.d.ts +45 -0
- package/build/types/utils/CacheEfficiencyAnalyzer.d.ts.map +1 -0
- package/build/types/utils/CircularBuffer.d.ts +18 -0
- package/build/types/utils/CircularBuffer.d.ts.map +1 -0
- package/build/types/utils/ComponentContextCapture.d.ts +29 -0
- package/build/types/utils/ComponentContextCapture.d.ts.map +1 -0
- package/build/types/utils/ComponentPrimitiveDiscovery.d.ts +62 -0
- package/build/types/utils/ComponentPrimitiveDiscovery.d.ts.map +1 -0
- package/build/types/utils/ComponentQueryRegistry.d.ts +91 -0
- package/build/types/utils/ComponentQueryRegistry.d.ts.map +1 -0
- package/build/types/utils/ComputeMonitor.d.ts +14 -0
- package/build/types/utils/ComputeMonitor.d.ts.map +1 -0
- package/build/types/utils/EventTimeline.d.ts +102 -0
- package/build/types/utils/EventTimeline.d.ts.map +1 -0
- package/build/types/utils/LinkTraversalTracker.d.ts +43 -0
- package/build/types/utils/LinkTraversalTracker.d.ts.map +1 -0
- package/build/types/utils/MockDataGenerator.d.ts +23 -0
- package/build/types/utils/MockDataGenerator.d.ts.map +1 -0
- package/build/types/utils/ObservableClientMonitor.d.ts +62 -0
- package/build/types/utils/ObservableClientMonitor.d.ts.map +1 -0
- package/build/types/utils/PerformanceRecommendationEngine.d.ts +67 -0
- package/build/types/utils/PerformanceRecommendationEngine.d.ts.map +1 -0
- package/build/types/utils/PropertyAccessTracker.d.ts +50 -0
- package/build/types/utils/PropertyAccessTracker.d.ts.map +1 -0
- package/build/types/utils/RecommendationMatcher.d.ts +5 -0
- package/build/types/utils/RecommendationMatcher.d.ts.map +1 -0
- package/build/types/utils/SubscriptionTracker.d.ts +17 -0
- package/build/types/utils/SubscriptionTracker.d.ts.map +1 -0
- package/build/types/utils/UnusedFieldAnalyzer.d.ts +46 -0
- package/build/types/utils/UnusedFieldAnalyzer.d.ts.map +1 -0
- package/build/types/utils/WaterfallDetector.d.ts +28 -0
- package/build/types/utils/WaterfallDetector.d.ts.map +1 -0
- package/build/types/utils/computePayload.d.ts +3 -0
- package/build/types/utils/computePayload.d.ts.map +1 -0
- package/build/types/utils/computeRequest.d.ts +20 -0
- package/build/types/utils/computeRequest.d.ts.map +1 -0
- package/build/types/utils/format.d.ts +5 -0
- package/build/types/utils/format.d.ts.map +1 -0
- package/build/types/utils/logger.d.ts +2 -0
- package/build/types/utils/logger.d.ts.map +1 -0
- package/build/types/vite/constants.d.ts +1 -0
- package/build/types/vite/constants.d.ts.map +1 -0
- package/build/types/vite/hookInstaller.d.ts +1 -0
- package/build/types/vite/hookInstaller.d.ts.map +1 -0
- package/build/types/vite/index.d.ts +20 -0
- package/build/types/vite/index.d.ts.map +1 -0
- 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 @@
|
|
|
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 @@
|
|
|
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 @@
|
|
|
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 @@
|
|
|
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 @@
|
|
|
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 @@
|
|
|
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 @@
|
|
|
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 @@
|
|
|
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 @@
|
|
|
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 @@
|
|
|
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 @@
|
|
|
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 @@
|
|
|
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 @@
|
|
|
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"}
|