rename files from ts to tsx in flipper-* packages
Summary: mass files rename Reviewed By: nikoant Differential Revision: D33890252 fbshipit-source-id: d5afaa60af7340313a97d8e4967fe37f00abd9db
This commit is contained in:
committed by
Facebook GitHub Bot
parent
2476472344
commit
c5dd1fc350
155
desktop/flipper-plugin/src/index.tsx
Normal file
155
desktop/flipper-plugin/src/index.tsx
Normal file
@@ -0,0 +1,155 @@
|
||||
/**
|
||||
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*
|
||||
* @format
|
||||
*/
|
||||
|
||||
export {produce, Draft} from 'immer';
|
||||
import styledImport from '@emotion/styled';
|
||||
export const styled = styledImport;
|
||||
|
||||
import './plugin/PluginBase';
|
||||
import * as TestUtilites from './test-utils/test-utils';
|
||||
|
||||
export {
|
||||
SandyPluginInstance as _SandyPluginInstance,
|
||||
PluginClient,
|
||||
} from './plugin/Plugin';
|
||||
export {
|
||||
Device,
|
||||
DeviceLogListener,
|
||||
DevicePluginClient,
|
||||
CrashLogListener,
|
||||
SandyDevicePluginInstance as _SandyDevicePluginInstance,
|
||||
} from './plugin/DevicePlugin';
|
||||
export {SandyPluginDefinition as _SandyPluginDefinition} from './plugin/SandyPluginDefinition';
|
||||
export {SandyPluginRenderer as _SandyPluginRenderer} from './plugin/PluginRenderer';
|
||||
export {
|
||||
SandyPluginContext as _SandyPluginContext,
|
||||
usePlugin,
|
||||
} from './plugin/PluginContext';
|
||||
export {createState, useValue, Atom} from './state/atom';
|
||||
export {batch} from './state/batch';
|
||||
export {
|
||||
FlipperLib,
|
||||
getFlipperLib,
|
||||
setFlipperLibImplementation as _setFlipperLibImplementation,
|
||||
FileDescriptor,
|
||||
FileEncoding,
|
||||
RemoteServerContext,
|
||||
DownloadFileResponse,
|
||||
} from './plugin/FlipperLib';
|
||||
export {
|
||||
MenuEntry,
|
||||
NormalizedMenuEntry,
|
||||
buildInMenuEntries as _buildInMenuEntries,
|
||||
DefaultKeyboardAction,
|
||||
} from './plugin/MenuEntry';
|
||||
export {Notification} from './plugin/Notification';
|
||||
export {CreatePasteArgs, CreatePasteResult} from './plugin/Paste';
|
||||
|
||||
export {theme} from './ui/theme';
|
||||
export {Layout} from './ui/Layout';
|
||||
export {
|
||||
NUX,
|
||||
NuxManagerContext as _NuxManagerContext,
|
||||
createNuxManager as _createNuxManager,
|
||||
} from './ui/NUX';
|
||||
export {Sidebar as _Sidebar} from './ui/Sidebar';
|
||||
export {DetailSidebar} from './ui/DetailSidebar';
|
||||
export {Toolbar} from './ui/Toolbar';
|
||||
export {MasterDetail} from './ui/MasterDetail';
|
||||
export {CodeBlock} from './ui/CodeBlock';
|
||||
|
||||
export {renderReactRoot, _PortalsManager} from './utils/renderReactRoot';
|
||||
export {
|
||||
Tracked,
|
||||
TrackingScope,
|
||||
setGlobalInteractionReporter as _setGlobalInteractionReporter,
|
||||
withTrackingScope,
|
||||
useTrackedCallback,
|
||||
wrapInteractionHandler as _wrapInteractionHandler,
|
||||
InteractionReport,
|
||||
InteractionReporter,
|
||||
} from './ui/Tracked';
|
||||
|
||||
export {DataFormatter} from './ui/DataFormatter';
|
||||
|
||||
export {useLogger, _LoggerContext} from './utils/useLogger';
|
||||
|
||||
export {Idler} from './utils/Idler';
|
||||
|
||||
// Import from the index file directly, to make sure package.json's main field is skipped.
|
||||
export {DataSource} from './data-source/index';
|
||||
export {createDataSource} from './state/createDataSource';
|
||||
|
||||
export {DataTable, DataTableColumn} from './ui/data-table/DataTable';
|
||||
export {DataTableManager} from './ui/data-table/DataTableManager';
|
||||
export {DataList} from './ui/DataList';
|
||||
export {Spinner} from './ui/Spinner';
|
||||
|
||||
export {
|
||||
Interactive as _Interactive,
|
||||
InteractiveProps as _InteractiveProps,
|
||||
} from './ui/Interactive';
|
||||
export {Panel} from './ui/Panel';
|
||||
export {Tabs, Tab} from './ui/Tabs';
|
||||
export {useLocalStorageState} from './utils/useLocalStorageState';
|
||||
|
||||
export {FileSelector} from './ui/FileSelector';
|
||||
export {HighlightManager} from './ui/Highlight';
|
||||
export {
|
||||
DataValueExtractor,
|
||||
DataInspectorExpanded,
|
||||
} from './ui/data-inspector/DataInspectorNode';
|
||||
export {
|
||||
DataDescriptionType,
|
||||
DataDescription,
|
||||
} from './ui/data-inspector/DataDescription';
|
||||
export {MarkerTimeline} from './ui/MarkerTimeline';
|
||||
export {DataInspector} from './ui/data-inspector/DataInspector';
|
||||
export {Dialog, DialogResult} from './ui/Dialog';
|
||||
export {
|
||||
ElementsInspector,
|
||||
Element as ElementsInspectorElement,
|
||||
// TODO: clean up or create namespace
|
||||
ElementsInspectorProps,
|
||||
ElementExtraInfo,
|
||||
ElementAttribute,
|
||||
ElementData,
|
||||
ElementSearchResultSet,
|
||||
ElementID,
|
||||
} from './ui/elements-inspector/ElementsInspector';
|
||||
export {useMemoize} from './utils/useMemoize';
|
||||
export {
|
||||
makeShallowSerializable as _makeShallowSerializable,
|
||||
deserializeShallowObject as _deserializeShallowObject,
|
||||
} from './utils/shallowSerialization';
|
||||
|
||||
export {createTablePlugin} from './utils/createTablePlugin';
|
||||
|
||||
export {textContent} from './utils/textContent';
|
||||
import * as path from './utils/path';
|
||||
export {path};
|
||||
export * from './utils/uuid';
|
||||
export {safeStringify} from './utils/safeStringify';
|
||||
|
||||
// It's not ideal that this exists in flipper-plugin sources directly,
|
||||
// but is the least pain for plugin authors.
|
||||
// Probably we should make sure that testing-library doesn't end up in our final Flipper bundle (which packages flipper-plugin)
|
||||
// T69106962
|
||||
export const TestUtils = TestUtilites;
|
||||
|
||||
export {
|
||||
sleep,
|
||||
timeout,
|
||||
DeviceOS,
|
||||
DeviceType,
|
||||
DeviceLogEntry,
|
||||
DeviceLogLevel,
|
||||
Logger,
|
||||
CrashLog,
|
||||
} from 'flipper-common';
|
||||
Reference in New Issue
Block a user