Export legacy MasterDetail and DataTable
Summary: Allow plugin developers to force old search for migration purposes Reviewed By: LukeDefeo Differential Revision: D50969832 fbshipit-source-id: 7fe5c3e65680d628bced2cd09823f7f3c132d33a
This commit is contained in:
committed by
Facebook GitHub Bot
parent
36cb69e1fd
commit
9c5df1516f
@@ -35,6 +35,7 @@ test('Correct top level API exposed', () => {
|
||||
"DataList",
|
||||
"DataSource",
|
||||
"DataTable",
|
||||
"DataTableLegacy",
|
||||
"DetailSidebar",
|
||||
"Dialog",
|
||||
"ElementsInspector",
|
||||
@@ -44,6 +45,7 @@ test('Correct top level API exposed', () => {
|
||||
"Layout",
|
||||
"MarkerTimeline",
|
||||
"MasterDetail",
|
||||
"MasterDetailLegacy",
|
||||
"NUX",
|
||||
"Panel",
|
||||
"PowerSearch",
|
||||
@@ -97,7 +99,9 @@ test('Correct top level API exposed', () => {
|
||||
"DataInspectorExpanded",
|
||||
"DataSourceVirtualizer",
|
||||
"DataTableColumn",
|
||||
"DataTableColumnLegacy",
|
||||
"DataTableManager",
|
||||
"DataTableManagerLegacy",
|
||||
"DataValueExtractor",
|
||||
"DefaultKeyboardAction",
|
||||
"Device",
|
||||
|
||||
@@ -37,7 +37,9 @@ export {
|
||||
export {Sidebar as _Sidebar} from './ui/Sidebar';
|
||||
export {DetailSidebar} from './ui/DetailSidebar';
|
||||
export {Toolbar} from './ui/Toolbar';
|
||||
|
||||
export {MasterDetail} from './ui/MasterDetail';
|
||||
export {MasterDetail as MasterDetailLegacy} from './ui/MasterDetail';
|
||||
export {MasterDetailWithPowerSearch as _MasterDetailWithPowerSearch} from './ui/MasterDetailWithPowerSearch';
|
||||
export {CodeBlock} from './ui/CodeBlock';
|
||||
|
||||
@@ -58,7 +60,12 @@ export {DataFormatter} from './ui/DataFormatter';
|
||||
export {useLogger, _LoggerContext} from './utils/useLogger';
|
||||
|
||||
export {DataTable, DataTableColumn} from './ui/data-table/DataTable';
|
||||
export {
|
||||
DataTable as DataTableLegacy,
|
||||
DataTableColumn as DataTableColumnLegacy,
|
||||
} from './ui/data-table/DataTable';
|
||||
export {DataTableManager} from './ui/data-table/DataTableManager';
|
||||
export {DataTableManager as DataTableManagerLegacy} from './ui/data-table/DataTableManager';
|
||||
export {
|
||||
DataTable as _DataTableWithPowerSearch,
|
||||
DataTableColumn as _DataTableColumnWithPowerSearch,
|
||||
|
||||
@@ -982,6 +982,10 @@ function HighlightedText(props: {text: string}) {
|
||||
|
||||
### dataTablePowerSearchOperators
|
||||
|
||||
### MasterDetailLegacy
|
||||
|
||||
### DataTableLegacy
|
||||
|
||||
Coming soon
|
||||
|
||||
### MasterDetail
|
||||
|
||||
Reference in New Issue
Block a user