From bdf3dbe3322bd74ea3b3b47808cc3d4c97d2811c Mon Sep 17 00:00:00 2001 From: Lorenzo Blasa Date: Tue, 7 Mar 2023 11:23:20 -0800 Subject: [PATCH] Export TimelineDataDescription Summary: It wasn't exported, instead it was consumed by the 'flipper' deprecated module. Reviewed By: fabiomassimo Differential Revision: D43872434 fbshipit-source-id: 70a4a525c660f0779f942739311205417cef3834 --- desktop/flipper-plugin/src/__tests__/api.node.tsx | 1 + desktop/flipper-plugin/src/index.tsx | 1 + docs/extending/flipper-plugin.mdx | 2 ++ 3 files changed, 4 insertions(+) diff --git a/desktop/flipper-plugin/src/__tests__/api.node.tsx b/desktop/flipper-plugin/src/__tests__/api.node.tsx index cd41a058e..1a9135676 100644 --- a/desktop/flipper-plugin/src/__tests__/api.node.tsx +++ b/desktop/flipper-plugin/src/__tests__/api.node.tsx @@ -50,6 +50,7 @@ test('Correct top level API exposed', () => { "Tab", "Tabs", "TestUtils", + "TimelineDataDescription", "Toolbar", "Tracked", "TrackingScope", diff --git a/desktop/flipper-plugin/src/index.tsx b/desktop/flipper-plugin/src/index.tsx index 9fdb4e898..b3f7f18d4 100644 --- a/desktop/flipper-plugin/src/index.tsx +++ b/desktop/flipper-plugin/src/index.tsx @@ -86,6 +86,7 @@ export { } from './ui/data-inspector/DataDescription'; export {MarkerTimeline} from './ui/MarkerTimeline'; export {DataInspector} from './ui/data-inspector/DataInspector'; +export {TimelineDataDescription} from './ui/data-inspector/TimelineDataDescription'; export {Dialog, DialogResult} from './ui/Dialog'; export { ElementsInspector, diff --git a/docs/extending/flipper-plugin.mdx b/docs/extending/flipper-plugin.mdx index ba1de0977..eb23440fe 100644 --- a/docs/extending/flipper-plugin.mdx +++ b/docs/extending/flipper-plugin.mdx @@ -940,6 +940,8 @@ function HighlightedText(props: {text: string}) { ### ElementsInspectorProps +### TimelineDataDescription + Coming soon ### MasterDetail